fuzz-uri.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Copyright (C) 2023 Teluu Inc. (http://www.teluu.com)
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #include <stdio.h>
  19. #include <stdint.h>
  20. #include <stdlib.h>
  21. #include <pjlib.h>
  22. #include <pjlib-util.h>
  23. //#include <sip_uri.h>
  24. #include <pjlib.h>
  25. #include <pjlib-util.h>
  26. #include <pjsip.h>
  27. #include <pjsip/sip_types.h>
  28. #include <pjsip.h>
  29. #include <pjlib.h>
  30. #define kMinInputLength 10
  31. #define kMaxInputLength 1024
  32. /* Defined in sip_parser.c */
  33. void init_sip_parser(void);
  34. void deinit_sip_parser(void);
  35. pj_pool_factory *mem;
  36. int uri_parse(uint8_t *data, size_t Size) {
  37. pj_status_t status = 0 ;
  38. pj_pool_t *pool;
  39. pjsip_uri *uri;
  40. pool = pj_pool_create(mem, "uri", 1000, 1000, NULL);
  41. uri = pjsip_parse_uri(pool, (char *)data, Size, 0);
  42. if (!uri) {
  43. status = 1;
  44. }
  45. pj_pool_release(pool);
  46. return status;
  47. }
  48. extern int
  49. LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
  50. {
  51. if (Size < kMinInputLength || Size > kMaxInputLength) {
  52. return 1;
  53. }
  54. int ret = 0;
  55. uint8_t *data;
  56. pj_caching_pool caching_pool;
  57. /* Add NULL byte */
  58. data = (uint8_t *)calloc((Size+1), sizeof(uint8_t));
  59. memcpy((void *)data, (void *)Data, Size);
  60. /* init Calls */
  61. pj_init();
  62. pj_caching_pool_init( &caching_pool, &pj_pool_factory_default_policy, 0);
  63. pj_log_set_level(0);
  64. mem = &caching_pool.factory;
  65. init_sip_parser();
  66. /* Call fuzzer */
  67. ret = uri_parse(data, Size);
  68. free(data);
  69. deinit_sip_parser();
  70. pj_caching_pool_destroy(&caching_pool);
  71. return ret;
  72. }