1 /** 2 * runlist.c - Run list handling code. Originated from the Linux-NTFS project. 3 * 4 * Copyright (c) 2002-2005 Anton Altaparmakov 5 * Copyright (c) 2002-2005 Richard Russon 6 * Copyright (c) 2002-2008 Szabolcs Szakacsits 7 * Copyright (c) 2004 Yura Pakhuchiy 8 * Copyright (c) 2007-2010 Jean-Pierre Andre 9 * 10 * This program/include file is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU General Public License as published 12 * by the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program/include file is distributed in the hope that it will be 16 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty 17 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program (in the main directory of the NTFS-3G 22 * distribution in the file COPYING); if not, write to the Free Software 23 * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 26 #ifdef HAVE_CONFIG_H 27 #include "config.h" 28 #endif 29 30 #ifdef HAVE_STDIO_H 31 #include <stdio.h> 32 #endif 33 #ifdef HAVE_STRING_H 34 #include <string.h> 35 #endif 36 #ifdef HAVE_STDLIB_H 37 #include <stdlib.h> 38 #endif 39 #ifdef HAVE_ERRNO_H 40 #include <errno.h> 41 #endif 42 43 #include "compat.h" 44 #include "types.h" 45 #include "volume.h" 46 #include "layout.h" 47 #include "debug.h" 48 #include "device.h" 49 #include "logging.h" 50 #include "misc.h" 51 52 /** 53 * ntfs_rl_mm - runlist memmove 54 * @base: 55 * @dst: 56 * @src: 57 * @size: 58 * 59 * Description... 60 * 61 * Returns: 62 */ 63 static void ntfs_rl_mm(runlist_element *base, int dst, int src, int size) 64 { 65 if ((dst != src) && (size > 0)) 66 memmove(base + dst, base + src, size * sizeof(*base)); 67 } 68 69 /** 70 * ntfs_rl_mc - runlist memory copy 71 * @dstbase: 72 * @dst: 73 * @srcbase: 74 * @src: 75 * @size: 76 * 77 * Description... 78 * 79 * Returns: 80 */ 81 static void ntfs_rl_mc(runlist_element *dstbase, int dst, 82 runlist_element *srcbase, int src, int size) 83 { 84 if (size > 0) 85 memcpy(dstbase + dst, srcbase + src, size * sizeof(*dstbase)); 86 } 87 88 /** 89 * ntfs_rl_realloc - Reallocate memory for runlists 90 * @rl: original runlist 91 * @old_size: number of runlist elements in the original runlist @rl 92 * @new_size: number of runlist elements we need space for 93 * 94 * As the runlists grow, more memory will be required. To prevent large 95 * numbers of small reallocations of memory, this function returns a 4kiB block 96 * of memory. 97 * 98 * N.B. If the new allocation doesn't require a different number of 4kiB 99 * blocks in memory, the function will return the original pointer. 100 * 101 * On success, return a pointer to the newly allocated, or recycled, memory. 102 * On error, return NULL with errno set to the error code. 103 */ 104 static runlist_element *ntfs_rl_realloc(runlist_element *rl, int old_size, 105 int new_size) 106 { 107 old_size = (old_size * sizeof(runlist_element) + 0xfff) & ~0xfff; 108 new_size = (new_size * sizeof(runlist_element) + 0xfff) & ~0xfff; 109 if (old_size == new_size) 110 return rl; 111 return realloc(rl, new_size); 112 } 113 114 /* 115 * Extend a runlist by some entry count 116 * The runlist may have to be reallocated 117 * 118 * Returns the reallocated runlist 119 * or NULL if reallocation was not possible (with errno set) 120 * the runlist is left unchanged if the reallocation fails 121 */ 122 123 runlist_element *ntfs_rl_extend(ntfs_attr *na, runlist_element *rl, 124 int more_entries) 125 { 126 runlist_element *newrl; 127 int last; 128 int irl; 129 130 if (na->rl && rl) { 131 irl = (int)(rl - na->rl); 132 last = irl; 133 while (na->rl[last].length) 134 last++; 135 newrl = ntfs_rl_realloc(na->rl,last+1,last+more_entries+1); 136 if (!newrl) { 137 errno = ENOMEM; 138 rl = (runlist_element*)NULL; 139 } else { 140 na->rl = newrl; 141 rl = &newrl[irl]; 142 } 143 } else { 144 ntfs_log_error("Cannot extend unmapped runlist"); 145 errno = EIO; 146 rl = (runlist_element*)NULL; 147 } 148 return (rl); 149 } 150 151 /** 152 * ntfs_rl_are_mergeable - test if two runlists can be joined together 153 * @dst: original runlist 154 * @src: new runlist to test for mergeability with @dst 155 * 156 * Test if two runlists can be joined together. For this, their VCNs and LCNs 157 * must be adjacent. 158 * 159 * Return: TRUE Success, the runlists can be merged. 160 * FALSE Failure, the runlists cannot be merged. 161 */ 162 static BOOL ntfs_rl_are_mergeable(runlist_element *dst, runlist_element *src) 163 { 164 if (!dst || !src) { 165 ntfs_log_debug("Eeek. ntfs_rl_are_mergeable() invoked with NULL " 166 "pointer!\n"); 167 return FALSE; 168 } 169 170 /* We can merge unmapped regions even if they are misaligned. */ 171 if ((dst->lcn == LCN_RL_NOT_MAPPED) && (src->lcn == LCN_RL_NOT_MAPPED)) 172 return TRUE; 173 /* If the runs are misaligned, we cannot merge them. */ 174 if ((dst->vcn + dst->length) != src->vcn) 175 return FALSE; 176 /* If both runs are non-sparse and contiguous, we can merge them. */ 177 if ((dst->lcn >= 0) && (src->lcn >= 0) && 178 ((dst->lcn + dst->length) == src->lcn)) 179 return TRUE; 180 /* If we are merging two holes, we can merge them. */ 181 if ((dst->lcn == LCN_HOLE) && (src->lcn == LCN_HOLE)) 182 return TRUE; 183 /* Cannot merge. */ 184 return FALSE; 185 } 186 187 /** 188 * __ntfs_rl_merge - merge two runlists without testing if they can be merged 189 * @dst: original, destination runlist 190 * @src: new runlist to merge with @dst 191 * 192 * Merge the two runlists, writing into the destination runlist @dst. The 193 * caller must make sure the runlists can be merged or this will corrupt the 194 * destination runlist. 195 */ 196 static void __ntfs_rl_merge(runlist_element *dst, runlist_element *src) 197 { 198 dst->length += src->length; 199 } 200 201 /** 202 * ntfs_rl_append - append a runlist after a given element 203 * @dst: original runlist to be worked on 204 * @dsize: number of elements in @dst (including end marker) 205 * @src: runlist to be inserted into @dst 206 * @ssize: number of elements in @src (excluding end marker) 207 * @loc: append the new runlist @src after this element in @dst 208 * 209 * Append the runlist @src after element @loc in @dst. Merge the right end of 210 * the new runlist, if necessary. Adjust the size of the hole before the 211 * appended runlist. 212 * 213 * On success, return a pointer to the new, combined, runlist. Note, both 214 * runlists @dst and @src are deallocated before returning so you cannot use 215 * the pointers for anything any more. (Strictly speaking the returned runlist 216 * may be the same as @dst but this is irrelevant.) 217 * 218 * On error, return NULL, with errno set to the error code. Both runlists are 219 * left unmodified. 220 */ 221 static runlist_element *ntfs_rl_append(runlist_element *dst, int dsize, 222 runlist_element *src, int ssize, int loc) 223 { 224 BOOL right = FALSE; /* Right end of @src needs merging */ 225 int marker; /* End of the inserted runs */ 226 227 if (!dst || !src) { 228 ntfs_log_debug("Eeek. ntfs_rl_append() invoked with NULL " 229 "pointer!\n"); 230 errno = EINVAL; 231 return NULL; 232 } 233 234 /* First, check if the right hand end needs merging. */ 235 if ((loc + 1) < dsize) 236 right = ntfs_rl_are_mergeable(src + ssize - 1, dst + loc + 1); 237 238 /* Space required: @dst size + @src size, less one if we merged. */ 239 dst = ntfs_rl_realloc(dst, dsize, dsize + ssize - right); 240 if (!dst) 241 return NULL; 242 /* 243 * We are guaranteed to succeed from here so can start modifying the 244 * original runlists. 245 */ 246 247 /* First, merge the right hand end, if necessary. */ 248 if (right) 249 __ntfs_rl_merge(src + ssize - 1, dst + loc + 1); 250 251 /* marker - First run after the @src runs that have been inserted */ 252 marker = loc + ssize + 1; 253 254 /* Move the tail of @dst out of the way, then copy in @src. */ 255 ntfs_rl_mm(dst, marker, loc + 1 + right, dsize - loc - 1 - right); 256 ntfs_rl_mc(dst, loc + 1, src, 0, ssize); 257 258 /* Adjust the size of the preceding hole. */ 259 dst[loc].length = dst[loc + 1].vcn - dst[loc].vcn; 260 261 /* We may have changed the length of the file, so fix the end marker */ 262 if (dst[marker].lcn == LCN_ENOENT) 263 dst[marker].vcn = dst[marker-1].vcn + dst[marker-1].length; 264 265 return dst; 266 } 267 268 /** 269 * ntfs_rl_insert - insert a runlist into another 270 * @dst: original runlist to be worked on 271 * @dsize: number of elements in @dst (including end marker) 272 * @src: new runlist to be inserted 273 * @ssize: number of elements in @src (excluding end marker) 274 * @loc: insert the new runlist @src before this element in @dst 275 * 276 * Insert the runlist @src before element @loc in the runlist @dst. Merge the 277 * left end of the new runlist, if necessary. Adjust the size of the hole 278 * after the inserted runlist. 279 * 280 * On success, return a pointer to the new, combined, runlist. Note, both 281 * runlists @dst and @src are deallocated before returning so you cannot use 282 * the pointers for anything any more. (Strictly speaking the returned runlist 283 * may be the same as @dst but this is irrelevant.) 284 * 285 * On error, return NULL, with errno set to the error code. Both runlists are 286 * left unmodified. 287 */ 288 static runlist_element *ntfs_rl_insert(runlist_element *dst, int dsize, 289 runlist_element *src, int ssize, int loc) 290 { 291 BOOL left = FALSE; /* Left end of @src needs merging */ 292 BOOL disc = FALSE; /* Discontinuity between @dst and @src */ 293 int marker; /* End of the inserted runs */ 294 295 if (!dst || !src) { 296 ntfs_log_debug("Eeek. ntfs_rl_insert() invoked with NULL " 297 "pointer!\n"); 298 errno = EINVAL; 299 return NULL; 300 } 301 302 /* disc => Discontinuity between the end of @dst and the start of @src. 303 * This means we might need to insert a "notmapped" run. 304 */ 305 if (loc == 0) 306 disc = (src[0].vcn > 0); 307 else { 308 s64 merged_length; 309 310 left = ntfs_rl_are_mergeable(dst + loc - 1, src); 311 312 merged_length = dst[loc - 1].length; 313 if (left) 314 merged_length += src->length; 315 316 disc = (src[0].vcn > dst[loc - 1].vcn + merged_length); 317 } 318 319 /* Space required: @dst size + @src size, less one if we merged, plus 320 * one if there was a discontinuity. 321 */ 322 dst = ntfs_rl_realloc(dst, dsize, dsize + ssize - left + disc); 323 if (!dst) 324 return NULL; 325 /* 326 * We are guaranteed to succeed from here so can start modifying the 327 * original runlist. 328 */ 329 330 if (left) 331 __ntfs_rl_merge(dst + loc - 1, src); 332 333 /* 334 * marker - First run after the @src runs that have been inserted 335 * Nominally: marker = @loc + @ssize (location + number of runs in @src) 336 * If "left", then the first run in @src has been merged with one in @dst. 337 * If "disc", then @dst and @src don't meet and we need an extra run to fill the gap. 338 */ 339 marker = loc + ssize - left + disc; 340 341 /* Move the tail of @dst out of the way, then copy in @src. */ 342 ntfs_rl_mm(dst, marker, loc, dsize - loc); 343 ntfs_rl_mc(dst, loc + disc, src, left, ssize - left); 344 345 /* Adjust the VCN of the first run after the insertion ... */ 346 dst[marker].vcn = dst[marker - 1].vcn + dst[marker - 1].length; 347 /* ... and the length. */ 348 if (dst[marker].lcn == LCN_HOLE || dst[marker].lcn == LCN_RL_NOT_MAPPED) 349 dst[marker].length = dst[marker + 1].vcn - dst[marker].vcn; 350 351 /* Writing beyond the end of the file and there's a discontinuity. */ 352 if (disc) { 353 if (loc > 0) { 354 dst[loc].vcn = dst[loc - 1].vcn + dst[loc - 1].length; 355 dst[loc].length = dst[loc + 1].vcn - dst[loc].vcn; 356 } else { 357 dst[loc].vcn = 0; 358 dst[loc].length = dst[loc + 1].vcn; 359 } 360 dst[loc].lcn = LCN_RL_NOT_MAPPED; 361 } 362 return dst; 363 } 364 365 /** 366 * ntfs_rl_replace - overwrite a runlist element with another runlist 367 * @dst: original runlist to be worked on 368 * @dsize: number of elements in @dst (including end marker) 369 * @src: new runlist to be inserted 370 * @ssize: number of elements in @src (excluding end marker) 371 * @loc: index in runlist @dst to overwrite with @src 372 * 373 * Replace the runlist element @dst at @loc with @src. Merge the left and 374 * right ends of the inserted runlist, if necessary. 375 * 376 * On success, return a pointer to the new, combined, runlist. Note, both 377 * runlists @dst and @src are deallocated before returning so you cannot use 378 * the pointers for anything any more. (Strictly speaking the returned runlist 379 * may be the same as @dst but this is irrelevant.) 380 * 381 * On error, return NULL, with errno set to the error code. Both runlists are 382 * left unmodified. 383 */ 384 static runlist_element *ntfs_rl_replace(runlist_element *dst, int dsize, 385 runlist_element *src, int ssize, 386 int loc) 387 { 388 signed delta; 389 BOOL left = FALSE; /* Left end of @src needs merging */ 390 BOOL right = FALSE; /* Right end of @src needs merging */ 391 int tail; /* Start of tail of @dst */ 392 int marker; /* End of the inserted runs */ 393 394 if (!dst || !src) { 395 ntfs_log_debug("Eeek. ntfs_rl_replace() invoked with NULL " 396 "pointer!\n"); 397 errno = EINVAL; 398 return NULL; 399 } 400 401 /* First, see if the left and right ends need merging. */ 402 if ((loc + 1) < dsize) 403 right = ntfs_rl_are_mergeable(src + ssize - 1, dst + loc + 1); 404 if (loc > 0) 405 left = ntfs_rl_are_mergeable(dst + loc - 1, src); 406 407 /* Allocate some space. We'll need less if the left, right, or both 408 * ends get merged. The -1 accounts for the run being replaced. 409 */ 410 delta = ssize - 1 - left - right; 411 if (delta > 0) { 412 dst = ntfs_rl_realloc(dst, dsize, dsize + delta); 413 if (!dst) 414 return NULL; 415 } 416 /* 417 * We are guaranteed to succeed from here so can start modifying the 418 * original runlists. 419 */ 420 421 /* First, merge the left and right ends, if necessary. */ 422 if (right) 423 __ntfs_rl_merge(src + ssize - 1, dst + loc + 1); 424 if (left) 425 __ntfs_rl_merge(dst + loc - 1, src); 426 427 /* 428 * tail - Offset of the tail of @dst 429 * Nominally: @tail = @loc + 1 (location, skipping the replaced run) 430 * If "right", then one of @dst's runs is already merged into @src. 431 */ 432 tail = loc + right + 1; 433 434 /* 435 * marker - First run after the @src runs that have been inserted 436 * Nominally: @marker = @loc + @ssize (location + number of runs in @src) 437 * If "left", then the first run in @src has been merged with one in @dst. 438 */ 439 marker = loc + ssize - left; 440 441 /* Move the tail of @dst out of the way, then copy in @src. */ 442 ntfs_rl_mm(dst, marker, tail, dsize - tail); 443 ntfs_rl_mc(dst, loc, src, left, ssize - left); 444 445 /* We may have changed the length of the file, so fix the end marker */ 446 if (((dsize - tail) > 0) && (dst[marker].lcn == LCN_ENOENT)) 447 dst[marker].vcn = dst[marker - 1].vcn + dst[marker - 1].length; 448 449 return dst; 450 } 451 452 /** 453 * ntfs_rl_split - insert a runlist into the centre of a hole 454 * @dst: original runlist to be worked on 455 * @dsize: number of elements in @dst (including end marker) 456 * @src: new runlist to be inserted 457 * @ssize: number of elements in @src (excluding end marker) 458 * @loc: index in runlist @dst at which to split and insert @src 459 * 460 * Split the runlist @dst at @loc into two and insert @new in between the two 461 * fragments. No merging of runlists is necessary. Adjust the size of the 462 * holes either side. 463 * 464 * On success, return a pointer to the new, combined, runlist. Note, both 465 * runlists @dst and @src are deallocated before returning so you cannot use 466 * the pointers for anything any more. (Strictly speaking the returned runlist 467 * may be the same as @dst but this is irrelevant.) 468 * 469 * On error, return NULL, with errno set to the error code. Both runlists are 470 * left unmodified. 471 */ 472 static runlist_element *ntfs_rl_split(runlist_element *dst, int dsize, 473 runlist_element *src, int ssize, int loc) 474 { 475 if (!dst || !src) { 476 ntfs_log_debug("Eeek. ntfs_rl_split() invoked with NULL pointer!\n"); 477 errno = EINVAL; 478 return NULL; 479 } 480 481 /* Space required: @dst size + @src size + one new hole. */ 482 dst = ntfs_rl_realloc(dst, dsize, dsize + ssize + 1); 483 if (!dst) 484 return dst; 485 /* 486 * We are guaranteed to succeed from here so can start modifying the 487 * original runlists. 488 */ 489 490 /* Move the tail of @dst out of the way, then copy in @src. */ 491 ntfs_rl_mm(dst, loc + 1 + ssize, loc, dsize - loc); 492 ntfs_rl_mc(dst, loc + 1, src, 0, ssize); 493 494 /* Adjust the size of the holes either size of @src. */ 495 dst[loc].length = dst[loc+1].vcn - dst[loc].vcn; 496 dst[loc+ssize+1].vcn = dst[loc+ssize].vcn + dst[loc+ssize].length; 497 dst[loc+ssize+1].length = dst[loc+ssize+2].vcn - dst[loc+ssize+1].vcn; 498 499 return dst; 500 } 501 502 503 /** 504 * ntfs_runlists_merge_i - see ntfs_runlists_merge 505 */ 506 static runlist_element *ntfs_runlists_merge_i(runlist_element *drl, 507 runlist_element *srl) 508 { 509 int di, si; /* Current index into @[ds]rl. */ 510 int sstart; /* First index with lcn > LCN_RL_NOT_MAPPED. */ 511 int dins; /* Index into @drl at which to insert @srl. */ 512 int dend, send; /* Last index into @[ds]rl. */ 513 int dfinal, sfinal; /* The last index into @[ds]rl with 514 lcn >= LCN_HOLE. */ 515 int marker = 0; 516 VCN marker_vcn = 0; 517 518 ntfs_log_debug("dst:\n"); 519 ntfs_debug_runlist_dump(drl); 520 ntfs_log_debug("src:\n"); 521 ntfs_debug_runlist_dump(srl); 522 523 /* Check for silly calling... */ 524 if (!srl) 525 return drl; 526 527 /* Check for the case where the first mapping is being done now. */ 528 if (!drl) { 529 drl = srl; 530 /* Complete the source runlist if necessary. */ 531 if (drl[0].vcn) { 532 /* Scan to the end of the source runlist. */ 533 for (dend = 0; drl[dend].length; dend++) 534 ; 535 dend++; 536 drl = ntfs_rl_realloc(drl, dend, dend + 1); 537 if (!drl) 538 return drl; 539 /* Insert start element at the front of the runlist. */ 540 ntfs_rl_mm(drl, 1, 0, dend); 541 drl[0].vcn = 0; 542 drl[0].lcn = LCN_RL_NOT_MAPPED; 543 drl[0].length = drl[1].vcn; 544 } 545 goto finished; 546 } 547 548 si = di = 0; 549 550 /* Skip any unmapped start element(s) in the source runlist. */ 551 while (srl[si].length && srl[si].lcn < (LCN)LCN_HOLE) 552 si++; 553 554 /* Can't have an entirely unmapped source runlist. */ 555 if (!srl[si].length) { 556 errno = EINVAL; 557 ntfs_log_perror("%s: unmapped source runlist", __FUNCTION__); 558 return NULL; 559 } 560 561 /* Record the starting points. */ 562 sstart = si; 563 564 /* 565 * Skip forward in @drl until we reach the position where @srl needs to 566 * be inserted. If we reach the end of @drl, @srl just needs to be 567 * appended to @drl. 568 */ 569 for (; drl[di].length; di++) { 570 if (drl[di].vcn + drl[di].length > srl[sstart].vcn) 571 break; 572 } 573 dins = di; 574 575 /* Sanity check for illegal overlaps. */ 576 if ((drl[di].vcn == srl[si].vcn) && (drl[di].lcn >= 0) && 577 (srl[si].lcn >= 0)) { 578 errno = ERANGE; 579 ntfs_log_perror("Run lists overlap. Cannot merge"); 580 return NULL; 581 } 582 583 /* Scan to the end of both runlists in order to know their sizes. */ 584 for (send = si; srl[send].length; send++) 585 ; 586 for (dend = di; drl[dend].length; dend++) 587 ; 588 589 if (srl[send].lcn == (LCN)LCN_ENOENT) 590 marker_vcn = srl[marker = send].vcn; 591 592 /* Scan to the last element with lcn >= LCN_HOLE. */ 593 for (sfinal = send; sfinal >= 0 && srl[sfinal].lcn < LCN_HOLE; sfinal--) 594 ; 595 for (dfinal = dend; dfinal >= 0 && drl[dfinal].lcn < LCN_HOLE; dfinal--) 596 ; 597 598 { 599 BOOL start; 600 BOOL finish; 601 int ds = dend + 1; /* Number of elements in drl & srl */ 602 int ss = sfinal - sstart + 1; 603 604 start = ((drl[dins].lcn < LCN_RL_NOT_MAPPED) || /* End of file */ 605 (drl[dins].vcn == srl[sstart].vcn)); /* Start of hole */ 606 finish = ((drl[dins].lcn >= LCN_RL_NOT_MAPPED) && /* End of file */ 607 ((drl[dins].vcn + drl[dins].length) <= /* End of hole */ 608 (srl[send - 1].vcn + srl[send - 1].length))); 609 610 /* Or we'll lose an end marker */ 611 if (finish && !drl[dins].length) 612 ss++; 613 if (marker && (drl[dins].vcn + drl[dins].length > srl[send - 1].vcn)) 614 finish = FALSE; 615 616 ntfs_log_debug("dfinal = %i, dend = %i\n", dfinal, dend); 617 ntfs_log_debug("sstart = %i, sfinal = %i, send = %i\n", sstart, sfinal, send); 618 ntfs_log_debug("start = %i, finish = %i\n", start, finish); 619 ntfs_log_debug("ds = %i, ss = %i, dins = %i\n", ds, ss, dins); 620 621 if (start) { 622 if (finish) 623 drl = ntfs_rl_replace(drl, ds, srl + sstart, ss, dins); 624 else 625 drl = ntfs_rl_insert(drl, ds, srl + sstart, ss, dins); 626 } else { 627 if (finish) 628 drl = ntfs_rl_append(drl, ds, srl + sstart, ss, dins); 629 else 630 drl = ntfs_rl_split(drl, ds, srl + sstart, ss, dins); 631 } 632 if (!drl) { 633 ntfs_log_perror("Merge failed"); 634 return drl; 635 } 636 free(srl); 637 if (marker) { 638 ntfs_log_debug("Triggering marker code.\n"); 639 for (ds = dend; drl[ds].length; ds++) 640 ; 641 /* We only need to care if @srl ended after @drl. */ 642 if (drl[ds].vcn <= marker_vcn) { 643 int slots = 0; 644 645 if (drl[ds].vcn == marker_vcn) { 646 ntfs_log_debug("Old marker = %lli, replacing with " 647 "LCN_ENOENT.\n", 648 (long long)drl[ds].lcn); 649 drl[ds].lcn = (LCN)LCN_ENOENT; 650 goto finished; 651 } 652 /* 653 * We need to create an unmapped runlist element in 654 * @drl or extend an existing one before adding the 655 * ENOENT terminator. 656 */ 657 if (drl[ds].lcn == (LCN)LCN_ENOENT) { 658 ds--; 659 slots = 1; 660 } 661 if (drl[ds].lcn != (LCN)LCN_RL_NOT_MAPPED) { 662 /* Add an unmapped runlist element. */ 663 if (!slots) { 664 /* FIXME/TODO: We need to have the 665 * extra memory already! (AIA) 666 */ 667 drl = ntfs_rl_realloc(drl, ds, ds + 2); 668 if (!drl) 669 goto critical_error; 670 slots = 2; 671 } 672 ds++; 673 /* Need to set vcn if it isn't set already. */ 674 if (slots != 1) 675 drl[ds].vcn = drl[ds - 1].vcn + 676 drl[ds - 1].length; 677 drl[ds].lcn = (LCN)LCN_RL_NOT_MAPPED; 678 /* We now used up a slot. */ 679 slots--; 680 } 681 drl[ds].length = marker_vcn - drl[ds].vcn; 682 /* Finally add the ENOENT terminator. */ 683 ds++; 684 if (!slots) { 685 /* FIXME/TODO: We need to have the extra 686 * memory already! (AIA) 687 */ 688 drl = ntfs_rl_realloc(drl, ds, ds + 1); 689 if (!drl) 690 goto critical_error; 691 } 692 drl[ds].vcn = marker_vcn; 693 drl[ds].lcn = (LCN)LCN_ENOENT; 694 drl[ds].length = (s64)0; 695 } 696 } 697 } 698 699 finished: 700 /* The merge was completed successfully. */ 701 ntfs_log_debug("Merged runlist:\n"); 702 ntfs_debug_runlist_dump(drl); 703 return drl; 704 705 critical_error: 706 /* Critical error! We cannot afford to fail here. */ 707 ntfs_log_perror("libntfs: Critical error"); 708 ntfs_log_debug("Forcing segmentation fault!\n"); 709 marker_vcn = ((runlist*)NULL)->lcn; 710 return drl; 711 } 712 713 /** 714 * ntfs_runlists_merge - merge two runlists into one 715 * @drl: original runlist to be worked on 716 * @srl: new runlist to be merged into @drl 717 * 718 * First we sanity check the two runlists @srl and @drl to make sure that they 719 * are sensible and can be merged. The runlist @srl must be either after the 720 * runlist @drl or completely within a hole (or unmapped region) in @drl. 721 * 722 * Merging of runlists is necessary in two cases: 723 * 1. When attribute lists are used and a further extent is being mapped. 724 * 2. When new clusters are allocated to fill a hole or extend a file. 725 * 726 * There are four possible ways @srl can be merged. It can: 727 * - be inserted at the beginning of a hole, 728 * - split the hole in two and be inserted between the two fragments, 729 * - be appended at the end of a hole, or it can 730 * - replace the whole hole. 731 * It can also be appended to the end of the runlist, which is just a variant 732 * of the insert case. 733 * 734 * On success, return a pointer to the new, combined, runlist. Note, both 735 * runlists @drl and @srl are deallocated before returning so you cannot use 736 * the pointers for anything any more. (Strictly speaking the returned runlist 737 * may be the same as @dst but this is irrelevant.) 738 * 739 * On error, return NULL, with errno set to the error code. Both runlists are 740 * left unmodified. The following error codes are defined: 741 * ENOMEM Not enough memory to allocate runlist array. 742 * EINVAL Invalid parameters were passed in. 743 * ERANGE The runlists overlap and cannot be merged. 744 */ 745 runlist_element *ntfs_runlists_merge(runlist_element *drl, 746 runlist_element *srl) 747 { 748 runlist_element *rl; 749 750 ntfs_log_enter("Entering\n"); 751 rl = ntfs_runlists_merge_i(drl, srl); 752 ntfs_log_leave("\n"); 753 return rl; 754 } 755 756 /** 757 * ntfs_mapping_pairs_decompress - convert mapping pairs array to runlist 758 * @vol: ntfs volume on which the attribute resides 759 * @attr: attribute record whose mapping pairs array to decompress 760 * @old_rl: optional runlist in which to insert @attr's runlist 761 * 762 * Decompress the attribute @attr's mapping pairs array into a runlist. On 763 * success, return the decompressed runlist. 764 * 765 * If @old_rl is not NULL, decompressed runlist is inserted into the 766 * appropriate place in @old_rl and the resultant, combined runlist is 767 * returned. The original @old_rl is deallocated. 768 * 769 * On error, return NULL with errno set to the error code. @old_rl is left 770 * unmodified in that case. 771 * 772 * The following error codes are defined: 773 * ENOMEM Not enough memory to allocate runlist array. 774 * EIO Corrupt runlist. 775 * EINVAL Invalid parameters were passed in. 776 * ERANGE The two runlists overlap. 777 * 778 * FIXME: For now we take the conceptionally simplest approach of creating the 779 * new runlist disregarding the already existing one and then splicing the 780 * two into one, if that is possible (we check for overlap and discard the new 781 * runlist if overlap present before returning NULL, with errno = ERANGE). 782 */ 783 static runlist_element *ntfs_mapping_pairs_decompress_i(const ntfs_volume *vol, 784 const ATTR_RECORD *attr, runlist_element *old_rl) 785 { 786 VCN vcn; /* Current vcn. */ 787 LCN lcn; /* Current lcn. */ 788 s64 deltaxcn; /* Change in [vl]cn. */ 789 runlist_element *rl; /* The output runlist. */ 790 const u8 *buf; /* Current position in mapping pairs array. */ 791 const u8 *attr_end; /* End of attribute. */ 792 int err, rlsize; /* Size of runlist buffer. */ 793 u16 rlpos; /* Current runlist position in units of 794 runlist_elements. */ 795 u8 b; /* Current byte offset in buf. */ 796 797 ntfs_log_trace("Entering for attr 0x%x.\n", 798 (unsigned)le32_to_cpu(attr->type)); 799 /* Make sure attr exists and is non-resident. */ 800 if (!attr || !attr->non_resident || 801 sle64_to_cpu(attr->lowest_vcn) < (VCN)0) { 802 errno = EINVAL; 803 return NULL; 804 } 805 /* Start at vcn = lowest_vcn and lcn 0. */ 806 vcn = sle64_to_cpu(attr->lowest_vcn); 807 lcn = 0; 808 /* Get start of the mapping pairs array. */ 809 buf = (const u8*)attr + le16_to_cpu(attr->mapping_pairs_offset); 810 attr_end = (const u8*)attr + le32_to_cpu(attr->length); 811 if (buf < (const u8*)attr || buf > attr_end) { 812 ntfs_log_debug("Corrupt attribute.\n"); 813 errno = EIO; 814 return NULL; 815 } 816 /* Current position in runlist array. */ 817 rlpos = 0; 818 /* Allocate first 4kiB block and set current runlist size to 4kiB. */ 819 rlsize = 0x1000; 820 rl = ntfs_malloc(rlsize); 821 if (!rl) 822 return NULL; 823 /* Insert unmapped starting element if necessary. */ 824 if (vcn) { 825 rl->vcn = (VCN)0; 826 rl->lcn = (LCN)LCN_RL_NOT_MAPPED; 827 rl->length = vcn; 828 rlpos++; 829 } 830 while (buf < attr_end && *buf) { 831 /* 832 * Allocate more memory if needed, including space for the 833 * not-mapped and terminator elements. 834 */ 835 if ((int)((rlpos + 3) * sizeof(*old_rl)) > rlsize) { 836 runlist_element *rl2; 837 838 rlsize += 0x1000; 839 rl2 = realloc(rl, rlsize); 840 if (!rl2) { 841 int eo = errno; 842 free(rl); 843 errno = eo; 844 return NULL; 845 } 846 rl = rl2; 847 } 848 /* Enter the current vcn into the current runlist element. */ 849 rl[rlpos].vcn = vcn; 850 /* 851 * Get the change in vcn, i.e. the run length in clusters. 852 * Doing it this way ensures that we signextend negative values. 853 * A negative run length doesn't make any sense, but hey, I 854 * didn't make up the NTFS specs and Windows NT4 treats the run 855 * length as a signed value so that's how it is... 856 */ 857 b = *buf & 0xf; 858 if (b) { 859 if (buf + b > attr_end) 860 goto io_error; 861 for (deltaxcn = (s8)buf[b--]; b; b--) 862 deltaxcn = (deltaxcn << 8) + buf[b]; 863 } else { /* The length entry is compulsory. */ 864 ntfs_log_debug("Missing length entry in mapping pairs " 865 "array.\n"); 866 deltaxcn = (s64)-1; 867 } 868 /* 869 * Assume a negative length to indicate data corruption and 870 * hence clean-up and return NULL. 871 */ 872 if (deltaxcn < 0) { 873 ntfs_log_debug("Invalid length in mapping pairs array.\n"); 874 goto err_out; 875 } 876 /* 877 * Enter the current run length into the current runlist 878 * element. 879 */ 880 rl[rlpos].length = deltaxcn; 881 /* Increment the current vcn by the current run length. */ 882 vcn += deltaxcn; 883 /* 884 * There might be no lcn change at all, as is the case for 885 * sparse clusters on NTFS 3.0+, in which case we set the lcn 886 * to LCN_HOLE. 887 */ 888 if (!(*buf & 0xf0)) 889 rl[rlpos].lcn = (LCN)LCN_HOLE; 890 else { 891 /* Get the lcn change which really can be negative. */ 892 u8 b2 = *buf & 0xf; 893 b = b2 + ((*buf >> 4) & 0xf); 894 if (buf + b > attr_end) 895 goto io_error; 896 for (deltaxcn = (s8)buf[b--]; b > b2; b--) 897 deltaxcn = (deltaxcn << 8) + buf[b]; 898 /* Change the current lcn to it's new value. */ 899 lcn += deltaxcn; 900 #ifdef DEBUG 901 /* 902 * On NTFS 1.2-, apparently can have lcn == -1 to 903 * indicate a hole. But we haven't verified ourselves 904 * whether it is really the lcn or the deltaxcn that is 905 * -1. So if either is found give us a message so we 906 * can investigate it further! 907 */ 908 if (vol->major_ver < 3) { 909 if (deltaxcn == (LCN)-1) 910 ntfs_log_debug("lcn delta == -1\n"); 911 if (lcn == (LCN)-1) 912 ntfs_log_debug("lcn == -1\n"); 913 } 914 #endif 915 /* Check lcn is not below -1. */ 916 if (lcn < (LCN)-1) { 917 ntfs_log_debug("Invalid LCN < -1 in mapping pairs " 918 "array.\n"); 919 goto err_out; 920 } 921 /* Enter the current lcn into the runlist element. */ 922 rl[rlpos].lcn = lcn; 923 } 924 /* Get to the next runlist element. */ 925 rlpos++; 926 /* Increment the buffer position to the next mapping pair. */ 927 buf += (*buf & 0xf) + ((*buf >> 4) & 0xf) + 1; 928 } 929 if (buf >= attr_end) 930 goto io_error; 931 /* 932 * If there is a highest_vcn specified, it must be equal to the final 933 * vcn in the runlist - 1, or something has gone badly wrong. 934 */ 935 deltaxcn = sle64_to_cpu(attr->highest_vcn); 936 if (deltaxcn && vcn - 1 != deltaxcn) { 937 mpa_err: 938 ntfs_log_debug("Corrupt mapping pairs array in non-resident " 939 "attribute.\n"); 940 goto err_out; 941 } 942 943 /* 944 * If this is the base of runlist (if 'lowest_vcn' is 0), then 945 * 'allocated_size' is valid, and we can use it to compute the total 946 * number of clusters across all extents. If the runlist covers all 947 * clusters, then it fits into a single extent and we can terminate 948 * the runlist with LCN_NOENT. Otherwise, we must terminate the runlist 949 * with LCN_RL_NOT_MAPPED and let the caller look for more extents. 950 */ 951 if (!attr->lowest_vcn) { 952 VCN num_clusters; 953 954 num_clusters = ((sle64_to_cpu(attr->allocated_size) + 955 vol->cluster_size - 1) >> 956 vol->cluster_size_bits); 957 958 if (num_clusters > vcn) { 959 /* 960 * The runlist doesn't cover all the clusters, so there 961 * must be more extents. 962 */ 963 ntfs_log_debug("More extents to follow; vcn = 0x%llx, " 964 "num_clusters = 0x%llx\n", 965 (long long)vcn, 966 (long long)num_clusters); 967 rl[rlpos].vcn = vcn; 968 vcn += rl[rlpos].length = num_clusters - vcn; 969 rl[rlpos].lcn = (LCN)LCN_RL_NOT_MAPPED; 970 rlpos++; 971 } else if (vcn > num_clusters) { 972 /* 973 * There are more VCNs in the runlist than expected, so 974 * the runlist is corrupt. 975 */ 976 ntfs_log_error("Corrupt attribute. vcn = 0x%llx, " 977 "num_clusters = 0x%llx\n", 978 (long long)vcn, 979 (long long)num_clusters); 980 goto mpa_err; 981 } 982 rl[rlpos].lcn = (LCN)LCN_ENOENT; 983 } else /* Not the base extent. There may be more extents to follow. */ 984 rl[rlpos].lcn = (LCN)LCN_RL_NOT_MAPPED; 985 986 /* Setup terminating runlist element. */ 987 rl[rlpos].vcn = vcn; 988 rl[rlpos].length = (s64)0; 989 /* If no existing runlist was specified, we are done. */ 990 if (!old_rl) { 991 ntfs_log_debug("Mapping pairs array successfully decompressed:\n"); 992 ntfs_debug_runlist_dump(rl); 993 return rl; 994 } 995 /* Now combine the new and old runlists checking for overlaps. */ 996 old_rl = ntfs_runlists_merge(old_rl, rl); 997 if (old_rl) 998 return old_rl; 999 err = errno; 1000 free(rl); 1001 ntfs_log_debug("Failed to merge runlists.\n"); 1002 errno = err; 1003 return NULL; 1004 io_error: 1005 ntfs_log_debug("Corrupt attribute.\n"); 1006 err_out: 1007 free(rl); 1008 errno = EIO; 1009 return NULL; 1010 } 1011 1012 runlist_element *ntfs_mapping_pairs_decompress(const ntfs_volume *vol, 1013 const ATTR_RECORD *attr, runlist_element *old_rl) 1014 { 1015 runlist_element *rle; 1016 1017 ntfs_log_enter("Entering\n"); 1018 rle = ntfs_mapping_pairs_decompress_i(vol, attr, old_rl); 1019 ntfs_log_leave("\n"); 1020 return rle; 1021 } 1022 1023 /** 1024 * ntfs_rl_vcn_to_lcn - convert a vcn into a lcn given a runlist 1025 * @rl: runlist to use for conversion 1026 * @vcn: vcn to convert 1027 * 1028 * Convert the virtual cluster number @vcn of an attribute into a logical 1029 * cluster number (lcn) of a device using the runlist @rl to map vcns to their 1030 * corresponding lcns. 1031 * 1032 * Since lcns must be >= 0, we use negative return values with special meaning: 1033 * 1034 * Return value Meaning / Description 1035 * ================================================== 1036 * -1 = LCN_HOLE Hole / not allocated on disk. 1037 * -2 = LCN_RL_NOT_MAPPED This is part of the runlist which has not been 1038 * inserted into the runlist yet. 1039 * -3 = LCN_ENOENT There is no such vcn in the attribute. 1040 * -4 = LCN_EINVAL Input parameter error. 1041 */ 1042 LCN ntfs_rl_vcn_to_lcn(const runlist_element *rl, const VCN vcn) 1043 { 1044 int i; 1045 1046 if (vcn < (VCN)0) 1047 return (LCN)LCN_EINVAL; 1048 /* 1049 * If rl is NULL, assume that we have found an unmapped runlist. The 1050 * caller can then attempt to map it and fail appropriately if 1051 * necessary. 1052 */ 1053 if (!rl) 1054 return (LCN)LCN_RL_NOT_MAPPED; 1055 1056 /* Catch out of lower bounds vcn. */ 1057 if (vcn < rl[0].vcn) 1058 return (LCN)LCN_ENOENT; 1059 1060 for (i = 0; rl[i].length; i++) { 1061 if (vcn < rl[i+1].vcn) { 1062 if (rl[i].lcn >= (LCN)0) 1063 return rl[i].lcn + (vcn - rl[i].vcn); 1064 return rl[i].lcn; 1065 } 1066 } 1067 /* 1068 * The terminator element is setup to the correct value, i.e. one of 1069 * LCN_HOLE, LCN_RL_NOT_MAPPED, or LCN_ENOENT. 1070 */ 1071 if (rl[i].lcn < (LCN)0) 1072 return rl[i].lcn; 1073 /* Just in case... We could replace this with BUG() some day. */ 1074 return (LCN)LCN_ENOENT; 1075 } 1076 1077 /** 1078 * ntfs_rl_pread - gather read from disk 1079 * @vol: ntfs volume to read from 1080 * @rl: runlist specifying where to read the data from 1081 * @pos: byte position within runlist @rl at which to begin the read 1082 * @count: number of bytes to read 1083 * @b: data buffer into which to read from disk 1084 * 1085 * This function will read @count bytes from the volume @vol to the data buffer 1086 * @b gathering the data as specified by the runlist @rl. The read begins at 1087 * offset @pos into the runlist @rl. 1088 * 1089 * On success, return the number of successfully read bytes. If this number is 1090 * lower than @count this means that the read reached end of file or that an 1091 * error was encountered during the read so that the read is partial. 0 means 1092 * nothing was read (also return 0 when @count is 0). 1093 * 1094 * On error and nothing has been read, return -1 with errno set appropriately 1095 * to the return code of ntfs_pread(), or to EINVAL in case of invalid 1096 * arguments. 1097 * 1098 * NOTE: If we encounter EOF while reading we return EIO because we assume that 1099 * the run list must point to valid locations within the ntfs volume. 1100 */ 1101 s64 ntfs_rl_pread(const ntfs_volume *vol, const runlist_element *rl, 1102 const s64 pos, s64 count, void *b) 1103 { 1104 s64 bytes_read, to_read, ofs, total; 1105 int err = EIO; 1106 1107 if (!vol || !rl || pos < 0 || count < 0) { 1108 errno = EINVAL; 1109 ntfs_log_perror("Failed to read runlist [vol: %p rl: %p " 1110 "pos: %lld count: %lld]", vol, rl, 1111 (long long)pos, (long long)count); 1112 return -1; 1113 } 1114 if (!count) 1115 return count; 1116 /* Seek in @rl to the run containing @pos. */ 1117 for (ofs = 0; rl->length && (ofs + (rl->length << 1118 vol->cluster_size_bits) <= pos); rl++) 1119 ofs += (rl->length << vol->cluster_size_bits); 1120 /* Offset in the run at which to begin reading. */ 1121 ofs = pos - ofs; 1122 for (total = 0LL; count; rl++, ofs = 0) { 1123 if (!rl->length) 1124 goto rl_err_out; 1125 if (rl->lcn < (LCN)0) { 1126 if (rl->lcn != (LCN)LCN_HOLE) 1127 goto rl_err_out; 1128 /* It is a hole. Just fill buffer @b with zeroes. */ 1129 to_read = min(count, (rl->length << 1130 vol->cluster_size_bits) - ofs); 1131 memset(b, 0, to_read); 1132 /* Update counters and proceed with next run. */ 1133 total += to_read; 1134 count -= to_read; 1135 b = (u8*)b + to_read; 1136 continue; 1137 } 1138 /* It is a real lcn, read it from the volume. */ 1139 to_read = min(count, (rl->length << vol->cluster_size_bits) - 1140 ofs); 1141 retry: 1142 bytes_read = ntfs_pread(vol->dev, (rl->lcn << 1143 vol->cluster_size_bits) + ofs, to_read, b); 1144 /* If everything ok, update progress counters and continue. */ 1145 if (bytes_read > 0) { 1146 total += bytes_read; 1147 count -= bytes_read; 1148 b = (u8*)b + bytes_read; 1149 continue; 1150 } 1151 /* If the syscall was interrupted, try again. */ 1152 if (bytes_read == (s64)-1 && errno == EINTR) 1153 goto retry; 1154 if (bytes_read == (s64)-1) 1155 err = errno; 1156 goto rl_err_out; 1157 } 1158 /* Finally, return the number of bytes read. */ 1159 return total; 1160 rl_err_out: 1161 if (total) 1162 return total; 1163 errno = err; 1164 return -1; 1165 } 1166 1167 /** 1168 * ntfs_rl_pwrite - scatter write to disk 1169 * @vol: ntfs volume to write to 1170 * @rl: runlist entry specifying where to write the data to 1171 * @ofs: offset in file for runlist element indicated in @rl 1172 * @pos: byte position from runlist beginning at which to begin the write 1173 * @count: number of bytes to write 1174 * @b: data buffer to write to disk 1175 * 1176 * This function will write @count bytes from data buffer @b to the volume @vol 1177 * scattering the data as specified by the runlist @rl. The write begins at 1178 * offset @pos into the runlist @rl. If a run is sparse then the related buffer 1179 * data is ignored which means that the caller must ensure they are consistent. 1180 * 1181 * On success, return the number of successfully written bytes. If this number 1182 * is lower than @count this means that the write has been interrupted in 1183 * flight or that an error was encountered during the write so that the write 1184 * is partial. 0 means nothing was written (also return 0 when @count is 0). 1185 * 1186 * On error and nothing has been written, return -1 with errno set 1187 * appropriately to the return code of ntfs_pwrite(), or to to EINVAL in case 1188 * of invalid arguments. 1189 */ 1190 s64 ntfs_rl_pwrite(const ntfs_volume *vol, const runlist_element *rl, 1191 s64 ofs, const s64 pos, s64 count, void *b) 1192 { 1193 s64 written, to_write, total = 0; 1194 int err = EIO; 1195 1196 if (!vol || !rl || pos < 0 || count < 0) { 1197 errno = EINVAL; 1198 ntfs_log_perror("Failed to write runlist [vol: %p rl: %p " 1199 "pos: %lld count: %lld]", vol, rl, 1200 (long long)pos, (long long)count); 1201 goto errno_set; 1202 } 1203 if (!count) 1204 goto out; 1205 /* Seek in @rl to the run containing @pos. */ 1206 while (rl->length && (ofs + (rl->length << 1207 vol->cluster_size_bits) <= pos)) { 1208 ofs += (rl->length << vol->cluster_size_bits); 1209 rl++; 1210 } 1211 /* Offset in the run at which to begin writing. */ 1212 ofs = pos - ofs; 1213 for (total = 0LL; count; rl++, ofs = 0) { 1214 if (!rl->length) 1215 goto rl_err_out; 1216 if (rl->lcn < (LCN)0) { 1217 1218 if (rl->lcn != (LCN)LCN_HOLE) 1219 goto rl_err_out; 1220 1221 to_write = min(count, (rl->length << 1222 vol->cluster_size_bits) - ofs); 1223 1224 total += to_write; 1225 count -= to_write; 1226 b = (u8*)b + to_write; 1227 continue; 1228 } 1229 /* It is a real lcn, write it to the volume. */ 1230 to_write = min(count, (rl->length << vol->cluster_size_bits) - 1231 ofs); 1232 retry: 1233 if (!NVolReadOnly(vol)) 1234 written = ntfs_pwrite(vol->dev, (rl->lcn << 1235 vol->cluster_size_bits) + ofs, 1236 to_write, b); 1237 else 1238 written = to_write; 1239 /* If everything ok, update progress counters and continue. */ 1240 if (written > 0) { 1241 total += written; 1242 count -= written; 1243 b = (u8*)b + written; 1244 continue; 1245 } 1246 /* If the syscall was interrupted, try again. */ 1247 if (written == (s64)-1 && errno == EINTR) 1248 goto retry; 1249 if (written == (s64)-1) 1250 err = errno; 1251 goto rl_err_out; 1252 } 1253 out: 1254 return total; 1255 rl_err_out: 1256 if (total) 1257 goto out; 1258 errno = err; 1259 errno_set: 1260 total = -1; 1261 goto out; 1262 } 1263 1264 /** 1265 * ntfs_get_nr_significant_bytes - get number of bytes needed to store a number 1266 * @n: number for which to get the number of bytes for 1267 * 1268 * Return the number of bytes required to store @n unambiguously as 1269 * a signed number. 1270 * 1271 * This is used in the context of the mapping pairs array to determine how 1272 * many bytes will be needed in the array to store a given logical cluster 1273 * number (lcn) or a specific run length. 1274 * 1275 * Return the number of bytes written. This function cannot fail. 1276 */ 1277 int ntfs_get_nr_significant_bytes(const s64 n) 1278 { 1279 u64 l; 1280 int i; 1281 1282 l = (n < 0 ? ~n : n); 1283 i = 1; 1284 if (l >= 128) { 1285 l >>= 7; 1286 do { 1287 i++; 1288 l >>= 8; 1289 } while (l); 1290 } 1291 return i; 1292 } 1293 1294 /** 1295 * ntfs_get_size_for_mapping_pairs - get bytes needed for mapping pairs array 1296 * @vol: ntfs volume (needed for the ntfs version) 1297 * @rl: runlist for which to determine the size of the mapping pairs 1298 * @start_vcn: vcn at which to start the mapping pairs array 1299 * 1300 * Walk the runlist @rl and calculate the size in bytes of the mapping pairs 1301 * array corresponding to the runlist @rl, starting at vcn @start_vcn. This 1302 * for example allows us to allocate a buffer of the right size when building 1303 * the mapping pairs array. 1304 * 1305 * If @rl is NULL, just return 1 (for the single terminator byte). 1306 * 1307 * Return the calculated size in bytes on success. On error, return -1 with 1308 * errno set to the error code. The following error codes are defined: 1309 * EINVAL - Run list contains unmapped elements. Make sure to only pass 1310 * fully mapped runlists to this function. 1311 * - @start_vcn is invalid. 1312 * EIO - The runlist is corrupt. 1313 */ 1314 int ntfs_get_size_for_mapping_pairs(const ntfs_volume *vol, 1315 const runlist_element *rl, const VCN start_vcn, int max_size) 1316 { 1317 LCN prev_lcn; 1318 int rls; 1319 1320 if (start_vcn < 0) { 1321 ntfs_log_trace("start_vcn %lld (should be >= 0)\n", 1322 (long long) start_vcn); 1323 errno = EINVAL; 1324 goto errno_set; 1325 } 1326 if (!rl) { 1327 if (start_vcn) { 1328 ntfs_log_trace("rl NULL, start_vcn %lld (should be > 0)\n", 1329 (long long) start_vcn); 1330 errno = EINVAL; 1331 goto errno_set; 1332 } 1333 rls = 1; 1334 goto out; 1335 } 1336 /* Skip to runlist element containing @start_vcn. */ 1337 while (rl->length && start_vcn >= rl[1].vcn) 1338 rl++; 1339 if ((!rl->length && start_vcn > rl->vcn) || start_vcn < rl->vcn) { 1340 errno = EINVAL; 1341 goto errno_set; 1342 } 1343 prev_lcn = 0; 1344 /* Always need the terminating zero byte. */ 1345 rls = 1; 1346 /* Do the first partial run if present. */ 1347 if (start_vcn > rl->vcn) { 1348 s64 delta; 1349 1350 /* We know rl->length != 0 already. */ 1351 if (rl->length < 0 || rl->lcn < LCN_HOLE) 1352 goto err_out; 1353 delta = start_vcn - rl->vcn; 1354 /* Header byte + length. */ 1355 rls += 1 + ntfs_get_nr_significant_bytes(rl->length - delta); 1356 /* 1357 * If the logical cluster number (lcn) denotes a hole and we 1358 * are on NTFS 3.0+, we don't store it at all, i.e. we need 1359 * zero space. On earlier NTFS versions we just store the lcn. 1360 * Note: this assumes that on NTFS 1.2-, holes are stored with 1361 * an lcn of -1 and not a delta_lcn of -1 (unless both are -1). 1362 */ 1363 if (rl->lcn >= 0 || vol->major_ver < 3) { 1364 prev_lcn = rl->lcn; 1365 if (rl->lcn >= 0) 1366 prev_lcn += delta; 1367 /* Change in lcn. */ 1368 rls += ntfs_get_nr_significant_bytes(prev_lcn); 1369 } 1370 /* Go to next runlist element. */ 1371 rl++; 1372 } 1373 /* Do the full runs. */ 1374 for (; rl->length && (rls <= max_size); rl++) { 1375 if (rl->length < 0 || rl->lcn < LCN_HOLE) 1376 goto err_out; 1377 /* Header byte + length. */ 1378 rls += 1 + ntfs_get_nr_significant_bytes(rl->length); 1379 /* 1380 * If the logical cluster number (lcn) denotes a hole and we 1381 * are on NTFS 3.0+, we don't store it at all, i.e. we need 1382 * zero space. On earlier NTFS versions we just store the lcn. 1383 * Note: this assumes that on NTFS 1.2-, holes are stored with 1384 * an lcn of -1 and not a delta_lcn of -1 (unless both are -1). 1385 */ 1386 if (rl->lcn >= 0 || vol->major_ver < 3) { 1387 /* Change in lcn. */ 1388 rls += ntfs_get_nr_significant_bytes(rl->lcn - 1389 prev_lcn); 1390 prev_lcn = rl->lcn; 1391 } 1392 } 1393 out: 1394 return rls; 1395 err_out: 1396 if (rl->lcn == LCN_RL_NOT_MAPPED) 1397 errno = EINVAL; 1398 else 1399 errno = EIO; 1400 errno_set: 1401 rls = -1; 1402 goto out; 1403 } 1404 1405 /** 1406 * ntfs_write_significant_bytes - write the significant bytes of a number 1407 * @dst: destination buffer to write to 1408 * @dst_max: pointer to last byte of destination buffer for bounds checking 1409 * @n: number whose significant bytes to write 1410 * 1411 * Store in @dst, the minimum bytes of the number @n which are required to 1412 * identify @n unambiguously as a signed number, taking care not to exceed 1413 * @dest_max, the maximum position within @dst to which we are allowed to 1414 * write. 1415 * 1416 * This is used when building the mapping pairs array of a runlist to compress 1417 * a given logical cluster number (lcn) or a specific run length to the minimum 1418 * size possible. 1419 * 1420 * Return the number of bytes written on success. On error, i.e. the 1421 * destination buffer @dst is too small, return -1 with errno set ENOSPC. 1422 */ 1423 int ntfs_write_significant_bytes(u8 *dst, const u8 *dst_max, const s64 n) 1424 { 1425 s64 l = n; 1426 int i; 1427 1428 i = 0; 1429 if (dst > dst_max) 1430 goto err_out; 1431 *dst++ = l; 1432 i++; 1433 while ((l > 0x7f) || (l < -0x80)) { 1434 if (dst > dst_max) 1435 goto err_out; 1436 l >>= 8; 1437 *dst++ = l; 1438 i++; 1439 } 1440 return i; 1441 err_out: 1442 errno = ENOSPC; 1443 return -1; 1444 } 1445 1446 /** 1447 * ntfs_mapping_pairs_build - build the mapping pairs array from a runlist 1448 * @vol: ntfs volume (needed for the ntfs version) 1449 * @dst: destination buffer to which to write the mapping pairs array 1450 * @dst_len: size of destination buffer @dst in bytes 1451 * @rl: runlist for which to build the mapping pairs array 1452 * @start_vcn: vcn at which to start the mapping pairs array 1453 * @stop_vcn: first vcn outside destination buffer on success or ENOSPC error 1454 * 1455 * Create the mapping pairs array from the runlist @rl, starting at vcn 1456 * @start_vcn and save the array in @dst. @dst_len is the size of @dst in 1457 * bytes and it should be at least equal to the value obtained by calling 1458 * ntfs_get_size_for_mapping_pairs(). 1459 * 1460 * If @rl is NULL, just write a single terminator byte to @dst. 1461 * 1462 * On success or ENOSPC error, if @stop_vcn is not NULL, *@stop_vcn is set to 1463 * the first vcn outside the destination buffer. Note that on error @dst has 1464 * been filled with all the mapping pairs that will fit, thus it can be treated 1465 * as partial success, in that a new attribute extent needs to be created or the 1466 * next extent has to be used and the mapping pairs build has to be continued 1467 * with @start_vcn set to *@stop_vcn. 1468 * 1469 * Return 0 on success. On error, return -1 with errno set to the error code. 1470 * The following error codes are defined: 1471 * EINVAL - Run list contains unmapped elements. Make sure to only pass 1472 * fully mapped runlists to this function. 1473 * - @start_vcn is invalid. 1474 * EIO - The runlist is corrupt. 1475 * ENOSPC - The destination buffer is too small. 1476 */ 1477 int ntfs_mapping_pairs_build(const ntfs_volume *vol, u8 *dst, 1478 const int dst_len, const runlist_element *rl, 1479 const VCN start_vcn, runlist_element const **stop_rl) 1480 { 1481 LCN prev_lcn; 1482 u8 *dst_max, *dst_next; 1483 s8 len_len, lcn_len; 1484 int ret = 0; 1485 1486 if (start_vcn < 0) 1487 goto val_err; 1488 if (!rl) { 1489 if (start_vcn) 1490 goto val_err; 1491 if (stop_rl) 1492 *stop_rl = rl; 1493 if (dst_len < 1) 1494 goto nospc_err; 1495 goto ok; 1496 } 1497 /* Skip to runlist element containing @start_vcn. */ 1498 while (rl->length && start_vcn >= rl[1].vcn) 1499 rl++; 1500 if ((!rl->length && start_vcn > rl->vcn) || start_vcn < rl->vcn) 1501 goto val_err; 1502 /* 1503 * @dst_max is used for bounds checking in 1504 * ntfs_write_significant_bytes(). 1505 */ 1506 dst_max = dst + dst_len - 1; 1507 prev_lcn = 0; 1508 /* Do the first partial run if present. */ 1509 if (start_vcn > rl->vcn) { 1510 s64 delta; 1511 1512 /* We know rl->length != 0 already. */ 1513 if (rl->length < 0 || rl->lcn < LCN_HOLE) 1514 goto err_out; 1515 delta = start_vcn - rl->vcn; 1516 /* Write length. */ 1517 len_len = ntfs_write_significant_bytes(dst + 1, dst_max, 1518 rl->length - delta); 1519 if (len_len < 0) 1520 goto size_err; 1521 /* 1522 * If the logical cluster number (lcn) denotes a hole and we 1523 * are on NTFS 3.0+, we don't store it at all, i.e. we need 1524 * zero space. On earlier NTFS versions we just write the lcn 1525 * change. FIXME: Do we need to write the lcn change or just 1526 * the lcn in that case? Not sure as I have never seen this 1527 * case on NT4. - We assume that we just need to write the lcn 1528 * change until someone tells us otherwise... (AIA) 1529 */ 1530 if (rl->lcn >= 0 || vol->major_ver < 3) { 1531 prev_lcn = rl->lcn; 1532 if (rl->lcn >= 0) 1533 prev_lcn += delta; 1534 /* Write change in lcn. */ 1535 lcn_len = ntfs_write_significant_bytes(dst + 1 + 1536 len_len, dst_max, prev_lcn); 1537 if (lcn_len < 0) 1538 goto size_err; 1539 } else 1540 lcn_len = 0; 1541 dst_next = dst + len_len + lcn_len + 1; 1542 if (dst_next > dst_max) 1543 goto size_err; 1544 /* Update header byte. */ 1545 *dst = lcn_len << 4 | len_len; 1546 /* Position at next mapping pairs array element. */ 1547 dst = dst_next; 1548 /* Go to next runlist element. */ 1549 rl++; 1550 } 1551 /* Do the full runs. */ 1552 for (; rl->length; rl++) { 1553 if (rl->length < 0 || rl->lcn < LCN_HOLE) 1554 goto err_out; 1555 /* Write length. */ 1556 len_len = ntfs_write_significant_bytes(dst + 1, dst_max, 1557 rl->length); 1558 if (len_len < 0) 1559 goto size_err; 1560 /* 1561 * If the logical cluster number (lcn) denotes a hole and we 1562 * are on NTFS 3.0+, we don't store it at all, i.e. we need 1563 * zero space. On earlier NTFS versions we just write the lcn 1564 * change. FIXME: Do we need to write the lcn change or just 1565 * the lcn in that case? Not sure as I have never seen this 1566 * case on NT4. - We assume that we just need to write the lcn 1567 * change until someone tells us otherwise... (AIA) 1568 */ 1569 if (rl->lcn >= 0 || vol->major_ver < 3) { 1570 /* Write change in lcn. */ 1571 lcn_len = ntfs_write_significant_bytes(dst + 1 + 1572 len_len, dst_max, rl->lcn - prev_lcn); 1573 if (lcn_len < 0) 1574 goto size_err; 1575 prev_lcn = rl->lcn; 1576 } else 1577 lcn_len = 0; 1578 dst_next = dst + len_len + lcn_len + 1; 1579 if (dst_next > dst_max) 1580 goto size_err; 1581 /* Update header byte. */ 1582 *dst = lcn_len << 4 | len_len; 1583 /* Position at next mapping pairs array element. */ 1584 dst += 1 + len_len + lcn_len; 1585 } 1586 /* Set stop vcn. */ 1587 if (stop_rl) 1588 *stop_rl = rl; 1589 ok: 1590 /* Add terminator byte. */ 1591 *dst = 0; 1592 out: 1593 return ret; 1594 size_err: 1595 /* Set stop vcn. */ 1596 if (stop_rl) 1597 *stop_rl = rl; 1598 /* Add terminator byte. */ 1599 *dst = 0; 1600 nospc_err: 1601 errno = ENOSPC; 1602 goto errno_set; 1603 val_err: 1604 errno = EINVAL; 1605 goto errno_set; 1606 err_out: 1607 if (rl->lcn == LCN_RL_NOT_MAPPED) 1608 errno = EINVAL; 1609 else 1610 errno = EIO; 1611 errno_set: 1612 ret = -1; 1613 goto out; 1614 } 1615 1616 /** 1617 * ntfs_rl_truncate - truncate a runlist starting at a specified vcn 1618 * @arl: address of runlist to truncate 1619 * @start_vcn: first vcn which should be cut off 1620 * 1621 * Truncate the runlist *@arl starting at vcn @start_vcn as well as the memory 1622 * buffer holding the runlist. 1623 * 1624 * Return 0 on success and -1 on error with errno set to the error code. 1625 * 1626 * NOTE: @arl is the address of the runlist. We need the address so we can 1627 * modify the pointer to the runlist with the new, reallocated memory buffer. 1628 */ 1629 int ntfs_rl_truncate(runlist **arl, const VCN start_vcn) 1630 { 1631 runlist *rl; 1632 /* BOOL is_end = FALSE; */ 1633 1634 if (!arl || !*arl) { 1635 errno = EINVAL; 1636 if (!arl) 1637 ntfs_log_perror("rl_truncate error: arl: %p", arl); 1638 else 1639 ntfs_log_perror("rl_truncate error:" 1640 " arl: %p *arl: %p", arl, *arl); 1641 return -1; 1642 } 1643 1644 rl = *arl; 1645 1646 if (start_vcn < rl->vcn) { 1647 errno = EINVAL; 1648 ntfs_log_perror("Start_vcn lies outside front of runlist"); 1649 return -1; 1650 } 1651 1652 /* Find the starting vcn in the run list. */ 1653 while (rl->length) { 1654 if (start_vcn < rl[1].vcn) 1655 break; 1656 rl++; 1657 } 1658 1659 if (!rl->length) { 1660 errno = EIO; 1661 ntfs_log_trace("Truncating already truncated runlist?\n"); 1662 return -1; 1663 } 1664 1665 /* Truncate the run. */ 1666 rl->length = start_vcn - rl->vcn; 1667 1668 /* 1669 * If a run was partially truncated, make the following runlist 1670 * element a terminator instead of the truncated runlist 1671 * element itself. 1672 */ 1673 if (rl->length) { 1674 ++rl; 1675 /* 1676 if (!rl->length) 1677 is_end = TRUE; 1678 */ 1679 rl->vcn = start_vcn; 1680 rl->length = 0; 1681 } 1682 rl->lcn = (LCN)LCN_ENOENT; 1683 /** 1684 * Reallocate memory if necessary. 1685 * FIXME: Below code is broken, because runlist allocations must be 1686 * a multiple of 4096. The code caused crashes and corruptions. 1687 */ 1688 /* 1689 if (!is_end) { 1690 size_t new_size = (rl - *arl + 1) * sizeof(runlist_element); 1691 rl = realloc(*arl, new_size); 1692 if (rl) 1693 *arl = rl; 1694 } 1695 */ 1696 return 0; 1697 } 1698 1699 /** 1700 * ntfs_rl_sparse - check whether runlist have sparse regions or not. 1701 * @rl: runlist to check 1702 * 1703 * Return 1 if have, 0 if not, -1 on error with errno set to the error code. 1704 */ 1705 int ntfs_rl_sparse(runlist *rl) 1706 { 1707 runlist *rlc; 1708 1709 if (!rl) { 1710 errno = EINVAL; 1711 ntfs_log_perror("%s: ", __FUNCTION__); 1712 return -1; 1713 } 1714 1715 for (rlc = rl; rlc->length; rlc++) 1716 if (rlc->lcn < 0) { 1717 if (rlc->lcn != LCN_HOLE) { 1718 errno = EINVAL; 1719 ntfs_log_perror("%s: bad runlist", __FUNCTION__); 1720 return -1; 1721 } 1722 return 1; 1723 } 1724 return 0; 1725 } 1726 1727 /** 1728 * ntfs_rl_get_compressed_size - calculate length of non sparse regions 1729 * @vol: ntfs volume (need for cluster size) 1730 * @rl: runlist to calculate for 1731 * 1732 * Return compressed size or -1 on error with errno set to the error code. 1733 */ 1734 s64 ntfs_rl_get_compressed_size(ntfs_volume *vol, runlist *rl) 1735 { 1736 runlist *rlc; 1737 s64 ret = 0; 1738 1739 if (!rl) { 1740 errno = EINVAL; 1741 ntfs_log_perror("%s: ", __FUNCTION__); 1742 return -1; 1743 } 1744 1745 for (rlc = rl; rlc->length; rlc++) { 1746 if (rlc->lcn < 0) { 1747 if (rlc->lcn != LCN_HOLE) { 1748 errno = EINVAL; 1749 ntfs_log_perror("%s: bad runlist", __FUNCTION__); 1750 return -1; 1751 } 1752 } else 1753 ret += rlc->length; 1754 } 1755 return ret << vol->cluster_size_bits; 1756 } 1757 1758 1759 #ifdef NTFS_TEST 1760 /** 1761 * test_rl_helper 1762 */ 1763 #define MKRL(R,V,L,S) \ 1764 (R)->vcn = V; \ 1765 (R)->lcn = L; \ 1766 (R)->length = S; 1767 /* 1768 } 1769 */ 1770 /** 1771 * test_rl_dump_runlist - Runlist test: Display the contents of a runlist 1772 * @rl: 1773 * 1774 * Description... 1775 * 1776 * Returns: 1777 */ 1778 static void test_rl_dump_runlist(const runlist_element *rl) 1779 { 1780 int abbr = 0; /* abbreviate long lists */ 1781 int len = 0; 1782 int i; 1783 const char *lcn_str[5] = { "HOLE", "NOTMAP", "ENOENT", "XXXX" }; 1784 1785 if (!rl) { 1786 printf(" Run list not present.\n"); 1787 return; 1788 } 1789 1790 if (abbr) 1791 for (len = 0; rl[len].length; len++) ; 1792 1793 printf(" VCN LCN len\n"); 1794 for (i = 0; ; i++, rl++) { 1795 LCN lcn = rl->lcn; 1796 1797 if ((abbr) && (len > 20)) { 1798 if (i == 4) 1799 printf(" ...\n"); 1800 if ((i > 3) && (i < (len - 3))) 1801 continue; 1802 } 1803 1804 if (lcn < (LCN)0) { 1805 int ind = -lcn - 1; 1806 1807 if (ind > -LCN_ENOENT - 1) 1808 ind = 3; 1809 printf("%8lld %8s %8lld\n", 1810 rl->vcn, lcn_str[ind], rl->length); 1811 } else 1812 printf("%8lld %8lld %8lld\n", 1813 rl->vcn, rl->lcn, rl->length); 1814 if (!rl->length) 1815 break; 1816 } 1817 if ((abbr) && (len > 20)) 1818 printf(" (%d entries)\n", len+1); 1819 printf("\n"); 1820 } 1821 1822 /** 1823 * test_rl_runlists_merge - Runlist test: Merge two runlists 1824 * @drl: 1825 * @srl: 1826 * 1827 * Description... 1828 * 1829 * Returns: 1830 */ 1831 static runlist_element * test_rl_runlists_merge(runlist_element *drl, runlist_element *srl) 1832 { 1833 runlist_element *res = NULL; 1834 1835 printf("dst:\n"); 1836 test_rl_dump_runlist(drl); 1837 printf("src:\n"); 1838 test_rl_dump_runlist(srl); 1839 1840 res = ntfs_runlists_merge(drl, srl); 1841 1842 printf("res:\n"); 1843 test_rl_dump_runlist(res); 1844 1845 return res; 1846 } 1847 1848 /** 1849 * test_rl_read_buffer - Runlist test: Read a file containing a runlist 1850 * @file: 1851 * @buf: 1852 * @bufsize: 1853 * 1854 * Description... 1855 * 1856 * Returns: 1857 */ 1858 static int test_rl_read_buffer(const char *file, u8 *buf, int bufsize) 1859 { 1860 FILE *fptr; 1861 1862 fptr = fopen(file, "r"); 1863 if (!fptr) { 1864 printf("open %s\n", file); 1865 return 0; 1866 } 1867 1868 if (fread(buf, bufsize, 1, fptr) == 99) { 1869 printf("read %s\n", file); 1870 return 0; 1871 } 1872 1873 fclose(fptr); 1874 return 1; 1875 } 1876 1877 /** 1878 * test_rl_pure_src - Runlist test: Complicate the simple tests a little 1879 * @contig: 1880 * @multi: 1881 * @vcn: 1882 * @len: 1883 * 1884 * Description... 1885 * 1886 * Returns: 1887 */ 1888 static runlist_element * test_rl_pure_src(BOOL contig, BOOL multi, int vcn, int len) 1889 { 1890 runlist_element *result; 1891 int fudge; 1892 1893 if (contig) 1894 fudge = 0; 1895 else 1896 fudge = 999; 1897 1898 result = ntfs_malloc(4096); 1899 if (!result) 1900 return NULL; 1901 1902 if (multi) { 1903 MKRL(result+0, vcn + (0*len/4), fudge + vcn + 1000 + (0*len/4), len / 4) 1904 MKRL(result+1, vcn + (1*len/4), fudge + vcn + 1000 + (1*len/4), len / 4) 1905 MKRL(result+2, vcn + (2*len/4), fudge + vcn + 1000 + (2*len/4), len / 4) 1906 MKRL(result+3, vcn + (3*len/4), fudge + vcn + 1000 + (3*len/4), len / 4) 1907 MKRL(result+4, vcn + (4*len/4), LCN_RL_NOT_MAPPED, 0) 1908 } else { 1909 MKRL(result+0, vcn, fudge + vcn + 1000, len) 1910 MKRL(result+1, vcn + len, LCN_RL_NOT_MAPPED, 0) 1911 } 1912 return result; 1913 } 1914 1915 /** 1916 * test_rl_pure_test - Runlist test: Perform tests using simple runlists 1917 * @test: 1918 * @contig: 1919 * @multi: 1920 * @vcn: 1921 * @len: 1922 * @file: 1923 * @size: 1924 * 1925 * Description... 1926 * 1927 * Returns: 1928 */ 1929 static void test_rl_pure_test(int test, BOOL contig, BOOL multi, int vcn, int len, runlist_element *file, int size) 1930 { 1931 runlist_element *src; 1932 runlist_element *dst; 1933 runlist_element *res; 1934 1935 src = test_rl_pure_src(contig, multi, vcn, len); 1936 dst = ntfs_malloc(4096); 1937 if (!src || !dst) { 1938 printf("Test %2d ---------- FAILED! (no free memory?)\n", test); 1939 return; 1940 } 1941 1942 memcpy(dst, file, size); 1943 1944 printf("Test %2d ----------\n", test); 1945 res = test_rl_runlists_merge(dst, src); 1946 1947 free(res); 1948 } 1949 1950 /** 1951 * test_rl_pure - Runlist test: Create tests using simple runlists 1952 * @contig: 1953 * @multi: 1954 * 1955 * Description... 1956 * 1957 * Returns: 1958 */ 1959 static void test_rl_pure(char *contig, char *multi) 1960 { 1961 /* VCN, LCN, len */ 1962 static runlist_element file1[] = { 1963 { 0, -1, 100 }, /* HOLE */ 1964 { 100, 1100, 100 }, /* DATA */ 1965 { 200, -1, 100 }, /* HOLE */ 1966 { 300, 1300, 100 }, /* DATA */ 1967 { 400, -1, 100 }, /* HOLE */ 1968 { 500, -3, 0 } /* NOENT */ 1969 }; 1970 static runlist_element file2[] = { 1971 { 0, 1000, 100 }, /* DATA */ 1972 { 100, -1, 100 }, /* HOLE */ 1973 { 200, -3, 0 } /* NOENT */ 1974 }; 1975 static runlist_element file3[] = { 1976 { 0, 1000, 100 }, /* DATA */ 1977 { 100, -3, 0 } /* NOENT */ 1978 }; 1979 static runlist_element file4[] = { 1980 { 0, -3, 0 } /* NOENT */ 1981 }; 1982 static runlist_element file5[] = { 1983 { 0, -2, 100 }, /* NOTMAP */ 1984 { 100, 1100, 100 }, /* DATA */ 1985 { 200, -2, 100 }, /* NOTMAP */ 1986 { 300, 1300, 100 }, /* DATA */ 1987 { 400, -2, 100 }, /* NOTMAP */ 1988 { 500, -3, 0 } /* NOENT */ 1989 }; 1990 static runlist_element file6[] = { 1991 { 0, 1000, 100 }, /* DATA */ 1992 { 100, -2, 100 }, /* NOTMAP */ 1993 { 200, -3, 0 } /* NOENT */ 1994 }; 1995 BOOL c, m; 1996 1997 if (strcmp(contig, "contig") == 0) 1998 c = TRUE; 1999 else if (strcmp(contig, "noncontig") == 0) 2000 c = FALSE; 2001 else { 2002 printf("rl pure [contig|noncontig] [single|multi]\n"); 2003 return; 2004 } 2005 if (strcmp(multi, "multi") == 0) 2006 m = TRUE; 2007 else if (strcmp(multi, "single") == 0) 2008 m = FALSE; 2009 else { 2010 printf("rl pure [contig|noncontig] [single|multi]\n"); 2011 return; 2012 } 2013 2014 test_rl_pure_test(1, c, m, 0, 40, file1, sizeof(file1)); 2015 test_rl_pure_test(2, c, m, 40, 40, file1, sizeof(file1)); 2016 test_rl_pure_test(3, c, m, 60, 40, file1, sizeof(file1)); 2017 test_rl_pure_test(4, c, m, 0, 100, file1, sizeof(file1)); 2018 test_rl_pure_test(5, c, m, 200, 40, file1, sizeof(file1)); 2019 test_rl_pure_test(6, c, m, 240, 40, file1, sizeof(file1)); 2020 test_rl_pure_test(7, c, m, 260, 40, file1, sizeof(file1)); 2021 test_rl_pure_test(8, c, m, 200, 100, file1, sizeof(file1)); 2022 test_rl_pure_test(9, c, m, 400, 40, file1, sizeof(file1)); 2023 test_rl_pure_test(10, c, m, 440, 40, file1, sizeof(file1)); 2024 test_rl_pure_test(11, c, m, 460, 40, file1, sizeof(file1)); 2025 test_rl_pure_test(12, c, m, 400, 100, file1, sizeof(file1)); 2026 test_rl_pure_test(13, c, m, 160, 100, file2, sizeof(file2)); 2027 test_rl_pure_test(14, c, m, 100, 140, file2, sizeof(file2)); 2028 test_rl_pure_test(15, c, m, 200, 40, file2, sizeof(file2)); 2029 test_rl_pure_test(16, c, m, 240, 40, file2, sizeof(file2)); 2030 test_rl_pure_test(17, c, m, 100, 40, file3, sizeof(file3)); 2031 test_rl_pure_test(18, c, m, 140, 40, file3, sizeof(file3)); 2032 test_rl_pure_test(19, c, m, 0, 40, file4, sizeof(file4)); 2033 test_rl_pure_test(20, c, m, 40, 40, file4, sizeof(file4)); 2034 test_rl_pure_test(21, c, m, 0, 40, file5, sizeof(file5)); 2035 test_rl_pure_test(22, c, m, 40, 40, file5, sizeof(file5)); 2036 test_rl_pure_test(23, c, m, 60, 40, file5, sizeof(file5)); 2037 test_rl_pure_test(24, c, m, 0, 100, file5, sizeof(file5)); 2038 test_rl_pure_test(25, c, m, 200, 40, file5, sizeof(file5)); 2039 test_rl_pure_test(26, c, m, 240, 40, file5, sizeof(file5)); 2040 test_rl_pure_test(27, c, m, 260, 40, file5, sizeof(file5)); 2041 test_rl_pure_test(28, c, m, 200, 100, file5, sizeof(file5)); 2042 test_rl_pure_test(29, c, m, 400, 40, file5, sizeof(file5)); 2043 test_rl_pure_test(30, c, m, 440, 40, file5, sizeof(file5)); 2044 test_rl_pure_test(31, c, m, 460, 40, file5, sizeof(file5)); 2045 test_rl_pure_test(32, c, m, 400, 100, file5, sizeof(file5)); 2046 test_rl_pure_test(33, c, m, 160, 100, file6, sizeof(file6)); 2047 test_rl_pure_test(34, c, m, 100, 140, file6, sizeof(file6)); 2048 } 2049 2050 /** 2051 * test_rl_zero - Runlist test: Merge a zero-length runlist 2052 * 2053 * Description... 2054 * 2055 * Returns: 2056 */ 2057 static void test_rl_zero(void) 2058 { 2059 runlist_element *jim = NULL; 2060 runlist_element *bob = NULL; 2061 2062 bob = calloc(3, sizeof(runlist_element)); 2063 if (!bob) 2064 return; 2065 2066 MKRL(bob+0, 10, 99, 5) 2067 MKRL(bob+1, 15, LCN_RL_NOT_MAPPED, 0) 2068 2069 jim = test_rl_runlists_merge(jim, bob); 2070 if (!jim) 2071 return; 2072 2073 free(jim); 2074 } 2075 2076 /** 2077 * test_rl_frag_combine - Runlist test: Perform tests using fragmented files 2078 * @vol: 2079 * @attr1: 2080 * @attr2: 2081 * @attr3: 2082 * 2083 * Description... 2084 * 2085 * Returns: 2086 */ 2087 static void test_rl_frag_combine(ntfs_volume *vol, ATTR_RECORD *attr1, ATTR_RECORD *attr2, ATTR_RECORD *attr3) 2088 { 2089 runlist_element *run1; 2090 runlist_element *run2; 2091 runlist_element *run3; 2092 2093 run1 = ntfs_mapping_pairs_decompress(vol, attr1, NULL); 2094 if (!run1) 2095 return; 2096 2097 run2 = ntfs_mapping_pairs_decompress(vol, attr2, NULL); 2098 if (!run2) 2099 return; 2100 2101 run1 = test_rl_runlists_merge(run1, run2); 2102 2103 run3 = ntfs_mapping_pairs_decompress(vol, attr3, NULL); 2104 if (!run3) 2105 return; 2106 2107 run1 = test_rl_runlists_merge(run1, run3); 2108 2109 free(run1); 2110 } 2111 2112 /** 2113 * test_rl_frag - Runlist test: Create tests using very fragmented files 2114 * @test: 2115 * 2116 * Description... 2117 * 2118 * Returns: 2119 */ 2120 static void test_rl_frag(char *test) 2121 { 2122 ntfs_volume vol; 2123 ATTR_RECORD *attr1 = ntfs_malloc(1024); 2124 ATTR_RECORD *attr2 = ntfs_malloc(1024); 2125 ATTR_RECORD *attr3 = ntfs_malloc(1024); 2126 2127 if (!attr1 || !attr2 || !attr3) 2128 goto out; 2129 2130 vol.sb = NULL; 2131 vol.sector_size_bits = 9; 2132 vol.cluster_size = 2048; 2133 vol.cluster_size_bits = 11; 2134 vol.major_ver = 3; 2135 2136 if (!test_rl_read_buffer("runlist-data/attr1.bin", (u8*) attr1, 1024)) 2137 goto out; 2138 if (!test_rl_read_buffer("runlist-data/attr2.bin", (u8*) attr2, 1024)) 2139 goto out; 2140 if (!test_rl_read_buffer("runlist-data/attr3.bin", (u8*) attr3, 1024)) 2141 goto out; 2142 2143 if (strcmp(test, "123") == 0) test_rl_frag_combine(&vol, attr1, attr2, attr3); 2144 else if (strcmp(test, "132") == 0) test_rl_frag_combine(&vol, attr1, attr3, attr2); 2145 else if (strcmp(test, "213") == 0) test_rl_frag_combine(&vol, attr2, attr1, attr3); 2146 else if (strcmp(test, "231") == 0) test_rl_frag_combine(&vol, attr2, attr3, attr1); 2147 else if (strcmp(test, "312") == 0) test_rl_frag_combine(&vol, attr3, attr1, attr2); 2148 else if (strcmp(test, "321") == 0) test_rl_frag_combine(&vol, attr3, attr2, attr1); 2149 else 2150 printf("Frag: No such test '%s'\n", test); 2151 2152 out: 2153 free(attr1); 2154 free(attr2); 2155 free(attr3); 2156 } 2157 2158 /** 2159 * test_rl_main - Runlist test: Program start (main) 2160 * @argc: 2161 * @argv: 2162 * 2163 * Description... 2164 * 2165 * Returns: 2166 */ 2167 int test_rl_main(int argc, char *argv[]) 2168 { 2169 if ((argc == 2) && (strcmp(argv[1], "zero") == 0)) test_rl_zero(); 2170 else if ((argc == 3) && (strcmp(argv[1], "frag") == 0)) test_rl_frag(argv[2]); 2171 else if ((argc == 4) && (strcmp(argv[1], "pure") == 0)) test_rl_pure(argv[2], argv[3]); 2172 else 2173 printf("rl [zero|frag|pure] {args}\n"); 2174 2175 return 0; 2176 } 2177 2178 #endif 2179 2180