trasher.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. #define _XOPEN_SOURCE 600
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. #include <time.h>
  24. #include <inttypes.h>
  25. int main(int argc, char** argv)
  26. {
  27. FILE *f;
  28. int count, maxburst, length;
  29. if (argc < 4){
  30. printf("USAGE: trasher <filename> <count> <maxburst>\n");
  31. return 1;
  32. }
  33. f= fopen(argv[1], "rb+");
  34. if (!f){
  35. perror(argv[1]);
  36. return 2;
  37. }
  38. count= atoi(argv[2]);
  39. maxburst= atoi(argv[3]);
  40. srandom (time (0));
  41. fseek(f, 0, SEEK_END);
  42. length= ftell(f);
  43. fseek(f, 0, SEEK_SET);
  44. while(count--){
  45. int burst= 1 + random() * (uint64_t) (abs(maxburst)-1) / RAND_MAX;
  46. int pos= random() * (uint64_t) length / RAND_MAX;
  47. fseek(f, pos, SEEK_SET);
  48. if(maxburst<0) burst= -maxburst;
  49. if(pos + burst > length)
  50. continue;
  51. while(burst--){
  52. int val= random() * 256ULL / RAND_MAX;
  53. if(maxburst<0) val=0;
  54. fwrite(&val, 1, 1, f);
  55. }
  56. }
  57. return 0;
  58. }