trasher.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (c) 2007 Michael Niedermayer
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <inttypes.h>
  23. #include <errno.h>
  24. #include <string.h>
  25. static uint32_t state;
  26. static uint32_t ran(void)
  27. {
  28. return state = state * 1664525 + 1013904223;
  29. }
  30. static void checked_seek(FILE *stream, int64_t offset, int whence)
  31. {
  32. offset = fseek(stream, offset, whence);
  33. if (offset < 0) {
  34. fprintf(stderr, "seek failed\n");
  35. exit(1);
  36. }
  37. }
  38. int main(int argc, char **argv)
  39. {
  40. FILE *f;
  41. int count, maxburst, length;
  42. if (argc < 5) {
  43. printf("USAGE: trasher <filename> <count> <maxburst> <seed>\n");
  44. return 1;
  45. }
  46. f = fopen(argv[1], "rb+");
  47. if (!f) {
  48. perror(argv[1]);
  49. return 2;
  50. }
  51. count = atoi(argv[2]);
  52. maxburst = atoi(argv[3]);
  53. state = atoi(argv[4]);
  54. checked_seek(f, 0, SEEK_END);
  55. length = ftell(f);
  56. checked_seek(f, 0, SEEK_SET);
  57. while (count--) {
  58. int burst = 1 + ran() * (uint64_t) (abs(maxburst) - 1) / UINT32_MAX;
  59. int pos = ran() * (uint64_t) length / UINT32_MAX;
  60. checked_seek(f, pos, SEEK_SET);
  61. if (maxburst < 0)
  62. burst = -maxburst;
  63. if (pos + burst > length)
  64. continue;
  65. while (burst--) {
  66. int val = ran() * 256ULL / UINT32_MAX;
  67. if (maxburst < 0)
  68. val = 0;
  69. fwrite(&val, 1, 1, f);
  70. }
  71. }
  72. return 0;
  73. }