| [6ebaff9] | 1 | /*
|
|---|
| 2 | * Copyright (c) 2008 Jakub Jermar
|
|---|
| [c4bbca8] | 3 | * Copyright (c) 2011 Oleg Romanenko
|
|---|
| [6ebaff9] | 4 | * All rights reserved.
|
|---|
| 5 | *
|
|---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 7 | * modification, are permitted provided that the following conditions
|
|---|
| 8 | * are met:
|
|---|
| 9 | *
|
|---|
| 10 | * - Redistributions of source code must retain the above copyright
|
|---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 14 | * documentation and/or other materials provided with the distribution.
|
|---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 16 | * derived from this software without specific prior written permission.
|
|---|
| 17 | *
|
|---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 28 | */
|
|---|
| 29 |
|
|---|
| 30 | /** @addtogroup fs
|
|---|
| 31 | * @{
|
|---|
| 32 | */
|
|---|
| 33 |
|
|---|
| 34 | /**
|
|---|
| 35 | * @file fat_dentry.c
|
|---|
| 36 | * @brief Functions that work with FAT directory entries.
|
|---|
| 37 | */
|
|---|
| 38 |
|
|---|
| [033ef7d3] | 39 | #include "fat_dentry.h"
|
|---|
| [0fdd6bb] | 40 | #include <ctype.h>
|
|---|
| [19f857a] | 41 | #include <str.h>
|
|---|
| [34fdb75] | 42 | #include <errno.h>
|
|---|
| [e65e406] | 43 | #include <byteorder.h>
|
|---|
| [4372b49] | 44 | #include <assert.h>
|
|---|
| [d4d74dc] | 45 | #include <unistd.h>
|
|---|
| [033ef7d3] | 46 |
|
|---|
| [14c331a] | 47 | /** Compare path component with the name read from the dentry.
|
|---|
| 48 | *
|
|---|
| 49 | * This function compares the path component with the name read from the dentry.
|
|---|
| 50 | * The comparison is case insensitive and tolerates a mismatch on the trailing
|
|---|
| 51 | * dot character at the end of the name (i.e. when there is a dot, but no
|
|---|
| 52 | * extension).
|
|---|
| 53 | *
|
|---|
| 54 | * @param name Node name read from the dentry.
|
|---|
| 55 | * @param component Path component.
|
|---|
| 56 | *
|
|---|
| 57 | * @return Zero on match, non-zero otherwise.
|
|---|
| 58 | */
|
|---|
| 59 | int fat_dentry_namecmp(char *name, const char *component)
|
|---|
| 60 | {
|
|---|
| 61 | int rc;
|
|---|
| [92fd52d7] | 62 | size_t size;
|
|---|
| 63 |
|
|---|
| [14c331a] | 64 | if (!(rc = stricmp(name, component)))
|
|---|
| 65 | return rc;
|
|---|
| [7afb4a5] | 66 | if (!str_chr(name, '.')) {
|
|---|
| [14c331a] | 67 | /*
|
|---|
| 68 | * There is no '.' in the name, so we know that there is enough
|
|---|
| 69 | * space for appending an extra '.' to name.
|
|---|
| 70 | */
|
|---|
| [92fd52d7] | 71 | size = str_size(name);
|
|---|
| 72 | name[size] = '.';
|
|---|
| 73 | name[size + 1] = '\0';
|
|---|
| [14c331a] | 74 | rc = stricmp(name, component);
|
|---|
| 75 | }
|
|---|
| 76 | return rc;
|
|---|
| 77 | }
|
|---|
| 78 |
|
|---|
| [0fdd6bb] | 79 | void fat_dentry_name_get(const fat_dentry_t *d, char *buf)
|
|---|
| [033ef7d3] | 80 | {
|
|---|
| [a248234] | 81 | unsigned int i;
|
|---|
| 82 |
|
|---|
| [033ef7d3] | 83 | for (i = 0; i < FAT_NAME_LEN; i++) {
|
|---|
| 84 | if (d->name[i] == FAT_PAD)
|
|---|
| 85 | break;
|
|---|
| [a248234] | 86 |
|
|---|
| [033ef7d3] | 87 | if (d->name[i] == FAT_DENTRY_E5_ESC)
|
|---|
| 88 | *buf++ = 0xe5;
|
|---|
| [a248234] | 89 | else {
|
|---|
| 90 | if (d->lcase & FAT_LCASE_LOWER_NAME)
|
|---|
| 91 | *buf++ = tolower(d->name[i]);
|
|---|
| 92 | else
|
|---|
| 93 | *buf++ = d->name[i];
|
|---|
| 94 | }
|
|---|
| [033ef7d3] | 95 | }
|
|---|
| [a248234] | 96 |
|
|---|
| [033ef7d3] | 97 | if (d->ext[0] != FAT_PAD)
|
|---|
| 98 | *buf++ = '.';
|
|---|
| [a248234] | 99 |
|
|---|
| [033ef7d3] | 100 | for (i = 0; i < FAT_EXT_LEN; i++) {
|
|---|
| 101 | if (d->ext[i] == FAT_PAD) {
|
|---|
| 102 | *buf = '\0';
|
|---|
| 103 | return;
|
|---|
| 104 | }
|
|---|
| [a248234] | 105 |
|
|---|
| [033ef7d3] | 106 | if (d->ext[i] == FAT_DENTRY_E5_ESC)
|
|---|
| 107 | *buf++ = 0xe5;
|
|---|
| [a248234] | 108 | else {
|
|---|
| 109 | if (d->lcase & FAT_LCASE_LOWER_EXT)
|
|---|
| 110 | *buf++ = tolower(d->ext[i]);
|
|---|
| 111 | else
|
|---|
| 112 | *buf++ = d->ext[i];
|
|---|
| 113 | }
|
|---|
| [033ef7d3] | 114 | }
|
|---|
| [a248234] | 115 |
|
|---|
| [033ef7d3] | 116 | *buf = '\0';
|
|---|
| 117 | }
|
|---|
| 118 |
|
|---|
| [0fdd6bb] | 119 | void fat_dentry_name_set(fat_dentry_t *d, const char *name)
|
|---|
| 120 | {
|
|---|
| [a248234] | 121 | unsigned int i;
|
|---|
| [0fdd6bb] | 122 | const char fake_ext[] = " ";
|
|---|
| [a248234] | 123 | bool lower_name = true;
|
|---|
| 124 | bool lower_ext = true;
|
|---|
| 125 |
|
|---|
| [0fdd6bb] | 126 | for (i = 0; i < FAT_NAME_LEN; i++) {
|
|---|
| 127 | switch ((uint8_t) *name) {
|
|---|
| 128 | case 0xe5:
|
|---|
| 129 | d->name[i] = FAT_DENTRY_E5_ESC;
|
|---|
| 130 | name++;
|
|---|
| 131 | break;
|
|---|
| 132 | case '\0':
|
|---|
| 133 | case '.':
|
|---|
| 134 | d->name[i] = FAT_PAD;
|
|---|
| 135 | break;
|
|---|
| 136 | default:
|
|---|
| [a248234] | 137 | if (isalpha(*name)) {
|
|---|
| 138 | if (!islower(*name))
|
|---|
| 139 | lower_name = false;
|
|---|
| 140 | }
|
|---|
| 141 |
|
|---|
| [0fdd6bb] | 142 | d->name[i] = toupper(*name++);
|
|---|
| 143 | break;
|
|---|
| 144 | }
|
|---|
| 145 | }
|
|---|
| [a248234] | 146 |
|
|---|
| [0fdd6bb] | 147 | if (*name++ != '.')
|
|---|
| 148 | name = fake_ext;
|
|---|
| [a248234] | 149 |
|
|---|
| [0fdd6bb] | 150 | for (i = 0; i < FAT_EXT_LEN; i++) {
|
|---|
| 151 | switch ((uint8_t) *name) {
|
|---|
| 152 | case 0xe5:
|
|---|
| 153 | d->ext[i] = FAT_DENTRY_E5_ESC;
|
|---|
| 154 | name++;
|
|---|
| 155 | break;
|
|---|
| 156 | case '\0':
|
|---|
| 157 | d->ext[i] = FAT_PAD;
|
|---|
| 158 | break;
|
|---|
| 159 | default:
|
|---|
| [a248234] | 160 | if (isalpha(*name)) {
|
|---|
| 161 | if (!islower(*name))
|
|---|
| 162 | lower_ext = false;
|
|---|
| 163 | }
|
|---|
| 164 |
|
|---|
| [0fdd6bb] | 165 | d->ext[i] = toupper(*name++);
|
|---|
| 166 | break;
|
|---|
| 167 | }
|
|---|
| 168 | }
|
|---|
| [a248234] | 169 |
|
|---|
| 170 | if (lower_name)
|
|---|
| 171 | d->lcase |= FAT_LCASE_LOWER_NAME;
|
|---|
| 172 | else
|
|---|
| 173 | d->lcase &= ~FAT_LCASE_LOWER_NAME;
|
|---|
| 174 |
|
|---|
| 175 | if (lower_ext)
|
|---|
| 176 | d->lcase |= FAT_LCASE_LOWER_EXT;
|
|---|
| 177 | else
|
|---|
| 178 | d->lcase &= ~FAT_LCASE_LOWER_EXT;
|
|---|
| [0fdd6bb] | 179 | }
|
|---|
| 180 |
|
|---|
| 181 | fat_dentry_clsf_t fat_classify_dentry(const fat_dentry_t *d)
|
|---|
| [033ef7d3] | 182 | {
|
|---|
| [65ccd23] | 183 | if (d->attr == FAT_ATTR_LFN) {
|
|---|
| [34fdb75] | 184 | /* long name entry */
|
|---|
| [c6aca755] | 185 | if (FAT_LFN_ORDER(d) & FAT_LFN_ERASED)
|
|---|
| [34fdb75] | 186 | return FAT_DENTRY_FREE;
|
|---|
| 187 | else
|
|---|
| 188 | return FAT_DENTRY_LFN;
|
|---|
| [65ccd23] | 189 | }
|
|---|
| [033ef7d3] | 190 | if (d->attr & FAT_ATTR_VOLLABEL) {
|
|---|
| 191 | /* volume label entry */
|
|---|
| 192 | return FAT_DENTRY_SKIP;
|
|---|
| 193 | }
|
|---|
| 194 | if (d->name[0] == FAT_DENTRY_ERASED) {
|
|---|
| 195 | /* not-currently-used entry */
|
|---|
| [0fdd6bb] | 196 | return FAT_DENTRY_FREE;
|
|---|
| [033ef7d3] | 197 | }
|
|---|
| 198 | if (d->name[0] == FAT_DENTRY_UNUSED) {
|
|---|
| 199 | /* never used entry */
|
|---|
| 200 | return FAT_DENTRY_LAST;
|
|---|
| 201 | }
|
|---|
| 202 | if (d->name[0] == FAT_DENTRY_DOT) {
|
|---|
| 203 | /*
|
|---|
| 204 | * Most likely '.' or '..'.
|
|---|
| 205 | * It cannot occur in a regular file name.
|
|---|
| 206 | */
|
|---|
| 207 | return FAT_DENTRY_SKIP;
|
|---|
| 208 | }
|
|---|
| 209 | return FAT_DENTRY_VALID;
|
|---|
| 210 | }
|
|---|
| [6ebaff9] | 211 |
|
|---|
| [ed19497] | 212 | /** Compute checksum of Node name.
|
|---|
| 213 | *
|
|---|
| 214 | * Returns an unsigned byte checksum computed on an unsigned byte
|
|---|
| 215 | * array. The array must be 11 bytes long and is assumed to contain
|
|---|
| 216 | * a name stored in the format of a MS-DOS directory entry.
|
|---|
| 217 | *
|
|---|
| 218 | * @param name Node name read from the dentry.
|
|---|
| 219 | *
|
|---|
| 220 | * @return An 8-bit unsigned checksum of the name.
|
|---|
| 221 | */
|
|---|
| 222 | uint8_t fat_dentry_chksum(uint8_t *name)
|
|---|
| 223 | {
|
|---|
| [5d95f02] | 224 | uint8_t i, sum = 0;
|
|---|
| 225 |
|
|---|
| 226 | for (i = 0; i < (FAT_NAME_LEN + FAT_EXT_LEN); i++)
|
|---|
| [ed19497] | 227 | sum = ((sum & 1) ? 0x80 : 0) + (sum >> 1) + name[i];
|
|---|
| [5d95f02] | 228 |
|
|---|
| [ed19497] | 229 | return sum;
|
|---|
| 230 | }
|
|---|
| 231 |
|
|---|
| [34fdb75] | 232 | /** Get number of bytes in a string with size limit.
|
|---|
| 233 | *
|
|---|
| 234 | * @param str NULL-terminated (or not) string.
|
|---|
| 235 | * @param size Maximum number of bytes to consider.
|
|---|
| 236 | *
|
|---|
| 237 | * @return Number of bytes in string (without 0 and ff).
|
|---|
| 238 | *
|
|---|
| 239 | */
|
|---|
| [4372b49] | 240 | size_t fat_lfn_str_nlength(const uint16_t *str, size_t size)
|
|---|
| [34fdb75] | 241 | {
|
|---|
| 242 | size_t offset = 0;
|
|---|
| 243 |
|
|---|
| 244 | while (offset < size) {
|
|---|
| [7194a60] | 245 | if (str[offset] == 0 || str[offset] == FAT_LFN_PAD)
|
|---|
| [34fdb75] | 246 | break;
|
|---|
| [4372b49] | 247 | offset++;
|
|---|
| [34fdb75] | 248 | }
|
|---|
| 249 | return offset;
|
|---|
| 250 | }
|
|---|
| 251 |
|
|---|
| 252 | /** Get number of bytes in a FAT long entry occuped by characters.
|
|---|
| 253 | *
|
|---|
| 254 | * @param d FAT long entry.
|
|---|
| 255 | *
|
|---|
| 256 | * @return Number of bytes.
|
|---|
| 257 | *
|
|---|
| 258 | */
|
|---|
| 259 | size_t fat_lfn_size(const fat_dentry_t *d)
|
|---|
| 260 | {
|
|---|
| 261 | size_t size = 0;
|
|---|
| 262 |
|
|---|
| 263 | size += fat_lfn_str_nlength(FAT_LFN_PART1(d), FAT_LFN_PART1_SIZE);
|
|---|
| 264 | size += fat_lfn_str_nlength(FAT_LFN_PART2(d), FAT_LFN_PART2_SIZE);
|
|---|
| 265 | size += fat_lfn_str_nlength(FAT_LFN_PART3(d), FAT_LFN_PART3_SIZE);
|
|---|
| 266 |
|
|---|
| 267 | return size;
|
|---|
| 268 | }
|
|---|
| 269 |
|
|---|
| [7234617] | 270 | size_t fat_lfn_get_entry(const fat_dentry_t *d, uint16_t *dst, size_t *offset)
|
|---|
| [34fdb75] | 271 | {
|
|---|
| [7234617] | 272 | int i;
|
|---|
| [5d95f02] | 273 | for (i = FAT_LFN_PART3_SIZE - 1; i >= 0 && *offset > 0; i--) {
|
|---|
| [7234617] | 274 | if (d->lfn.part3[i] == 0 || d->lfn.part3[i] == FAT_LFN_PAD)
|
|---|
| [34fdb75] | 275 | continue;
|
|---|
| [4372b49] | 276 | (*offset)--;
|
|---|
| [7234617] | 277 | dst[(*offset)] = uint16_t_le2host(d->lfn.part3[i]);
|
|---|
| 278 | }
|
|---|
| [5d95f02] | 279 | for (i = FAT_LFN_PART2_SIZE - 1; i >= 0 && *offset > 0; i--) {
|
|---|
| [7234617] | 280 | if (d->lfn.part2[i] == 0 || d->lfn.part2[i] == FAT_LFN_PAD)
|
|---|
| 281 | continue;
|
|---|
| 282 | (*offset)--;
|
|---|
| 283 | dst[(*offset)] = uint16_t_le2host(d->lfn.part2[i]);
|
|---|
| 284 | }
|
|---|
| [5d95f02] | 285 | for (i = FAT_LFN_PART1_SIZE - 1; i >= 0 && *offset > 0; i--) {
|
|---|
| [7234617] | 286 | if (d->lfn.part1[i] == 0 || d->lfn.part1[i] == FAT_LFN_PAD)
|
|---|
| 287 | continue;
|
|---|
| 288 | (*offset)--;
|
|---|
| 289 | dst[(*offset)] = uint16_t_le2host(d->lfn.part1[i]);
|
|---|
| [34fdb75] | 290 | }
|
|---|
| [4372b49] | 291 | return *offset;
|
|---|
| [34fdb75] | 292 | }
|
|---|
| 293 |
|
|---|
| [5d95f02] | 294 | size_t fat_lfn_set_entry(const uint16_t *src, size_t *offset, size_t size,
|
|---|
| 295 | fat_dentry_t *d)
|
|---|
| [34fdb75] | 296 | {
|
|---|
| [7194a60] | 297 | size_t idx;
|
|---|
| [5d95f02] | 298 | for (idx = 0; idx < FAT_LFN_PART1_SIZE; idx++) {
|
|---|
| [7234617] | 299 | if (*offset < size) {
|
|---|
| 300 | d->lfn.part1[idx] = host2uint16_t_le(src[*offset]);
|
|---|
| [7194a60] | 301 | (*offset)++;
|
|---|
| [5d95f02] | 302 | } else
|
|---|
| [7234617] | 303 | d->lfn.part1[idx] = FAT_LFN_PAD;
|
|---|
| 304 | }
|
|---|
| [5d95f02] | 305 | for (idx = 0; idx < FAT_LFN_PART2_SIZE; idx++) {
|
|---|
| [7234617] | 306 | if (*offset < size) {
|
|---|
| 307 | d->lfn.part2[idx] = host2uint16_t_le(src[*offset]);
|
|---|
| 308 | (*offset)++;
|
|---|
| [5d95f02] | 309 | } else
|
|---|
| [7234617] | 310 | d->lfn.part2[idx] = FAT_LFN_PAD;
|
|---|
| 311 | }
|
|---|
| [5d95f02] | 312 | for (idx = 0; idx < FAT_LFN_PART3_SIZE; idx++) {
|
|---|
| [7234617] | 313 | if (*offset < size) {
|
|---|
| 314 | d->lfn.part3[idx] = host2uint16_t_le(src[*offset]);
|
|---|
| 315 | (*offset)++;
|
|---|
| [5d95f02] | 316 | } else
|
|---|
| [7234617] | 317 | d->lfn.part3[idx] = FAT_LFN_PAD;
|
|---|
| [34fdb75] | 318 | }
|
|---|
| 319 |
|
|---|
| [7194a60] | 320 | if (src[*offset] == 0)
|
|---|
| 321 | offset++;
|
|---|
| 322 | FAT_LFN_ATTR(d) = FAT_ATTR_LFN;
|
|---|
| 323 | d->lfn.type = 0;
|
|---|
| 324 | d->lfn.firstc_lo = 0;
|
|---|
| 325 |
|
|---|
| 326 | return *offset;
|
|---|
| [9553d7d] | 327 | }
|
|---|
| 328 |
|
|---|
| [411e9ca] | 329 | void str_to_ascii(char *dst, const char *src, size_t count, uint8_t pad)
|
|---|
| [7194a60] | 330 | {
|
|---|
| [411e9ca] | 331 | wchar_t ch;
|
|---|
| 332 | size_t off = 0;
|
|---|
| [7194a60] | 333 | size_t i = 0;
|
|---|
| [411e9ca] | 334 |
|
|---|
| [7194a60] | 335 | while (i < count) {
|
|---|
| [411e9ca] | 336 | if ((ch = str_decode(src, &off, STR_NO_LIMIT)) != 0) {
|
|---|
| [a1d7b4b] | 337 | if (ascii_check(ch) && IS_D_CHAR(ch))
|
|---|
| [411e9ca] | 338 | *dst = toupper(ch);
|
|---|
| [7194a60] | 339 | else
|
|---|
| 340 | *dst = pad;
|
|---|
| [5d95f02] | 341 | } else
|
|---|
| [7194a60] | 342 | break;
|
|---|
| 343 |
|
|---|
| 344 | dst++;
|
|---|
| 345 | i++;
|
|---|
| 346 | }
|
|---|
| 347 | *dst = '\0';
|
|---|
| [2d0d637] | 348 | }
|
|---|
| 349 |
|
|---|
| [411e9ca] | 350 | bool fat_valid_name(const char *name)
|
|---|
| [2d0d637] | 351 | {
|
|---|
| [411e9ca] | 352 | wchar_t ch;
|
|---|
| 353 | size_t offset=0;
|
|---|
| 354 | bool result = true;
|
|---|
| [2d0d637] | 355 |
|
|---|
| [411e9ca] | 356 | while ((ch = str_decode(name, &offset, STR_NO_LIMIT)) != 0) {
|
|---|
| [980311e] | 357 | if (str_chr(FAT_STOP_CHARS, ch) != NULL) {
|
|---|
| [411e9ca] | 358 | result = false;
|
|---|
| 359 | break;
|
|---|
| 360 | }
|
|---|
| 361 | }
|
|---|
| 362 | return result;
|
|---|
| 363 | }
|
|---|
| 364 |
|
|---|
| 365 | bool fat_valid_short_name(const char *name)
|
|---|
| 366 | {
|
|---|
| 367 | unsigned int i;
|
|---|
| 368 | unsigned int dot = 0;
|
|---|
| 369 | bool dot_found = false;
|
|---|
| 370 |
|
|---|
| 371 | for (i = 0; name[i]; i++) {
|
|---|
| 372 | if (name[i] == '.') {
|
|---|
| 373 | if (dot_found) {
|
|---|
| 374 | return false;
|
|---|
| 375 | } else {
|
|---|
| 376 | dot_found = true;
|
|---|
| 377 | dot = i;
|
|---|
| 378 | }
|
|---|
| 379 | } else {
|
|---|
| 380 | if (!IS_D_CHAR(name[i]))
|
|---|
| 381 | return false;
|
|---|
| 382 | }
|
|---|
| 383 | }
|
|---|
| 384 |
|
|---|
| 385 | if (dot_found) {
|
|---|
| 386 | if (dot > FAT_NAME_LEN)
|
|---|
| 387 | return false;
|
|---|
| 388 | if (i - dot > FAT_EXT_LEN + 1)
|
|---|
| 389 | return false;
|
|---|
| 390 | } else {
|
|---|
| 391 | if (i > FAT_NAME_LEN)
|
|---|
| 392 | return false;
|
|---|
| 393 | }
|
|---|
| 394 |
|
|---|
| [2d0d637] | 395 | return true;
|
|---|
| 396 | }
|
|---|
| 397 |
|
|---|
| [411e9ca] | 398 | size_t utf16_length(const uint16_t *wstr)
|
|---|
| 399 | {
|
|---|
| 400 | size_t len = 0;
|
|---|
| 401 |
|
|---|
| 402 | while (*wstr++ != 0)
|
|---|
| 403 | len++;
|
|---|
| 404 |
|
|---|
| 405 | return len;
|
|---|
| 406 | }
|
|---|
| [ed19497] | 407 |
|
|---|
| [6ebaff9] | 408 | /**
|
|---|
| 409 | * @}
|
|---|
| 410 | */
|
|---|