You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.3KB

  1. /*
  2. * Simple URL decoding function
  3. * Copyright (c) 2012 Antti Seppälä
  4. *
  5. * References:
  6. * RFC 3986: Uniform Resource Identifier (URI): Generic Syntax
  7. * T. Berners-Lee et al. The Internet Society, 2005
  8. *
  9. * based on http://www.icosaedro.it/apache/urldecode.c
  10. * from Umberto Salsi (salsi@icosaedro.it)
  11. *
  12. * This file is part of FFmpeg.
  13. *
  14. * FFmpeg is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU Lesser General Public
  16. * License as published by the Free Software Foundation; either
  17. * version 2.1 of the License, or (at your option) any later version.
  18. *
  19. * FFmpeg is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  22. * Lesser General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU Lesser General Public
  25. * License along with FFmpeg; if not, write to the Free Software
  26. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  27. */
  28. #include <string.h>
  29. #include "libavutil/mem.h"
  30. #include "libavutil/avstring.h"
  31. #include "urldecode.h"
  32. char *ff_urldecode(const char *url)
  33. {
  34. int s = 0, d = 0, url_len = 0;
  35. char c;
  36. char *dest = NULL;
  37. if (!url)
  38. return NULL;
  39. url_len = strlen(url) + 1;
  40. dest = av_malloc(url_len);
  41. if (!dest)
  42. return NULL;
  43. while (s < url_len) {
  44. c = url[s++];
  45. if (c == '%' && s + 2 < url_len) {
  46. char c2 = url[s++];
  47. char c3 = url[s++];
  48. if (av_isxdigit(c2) && av_isxdigit(c3)) {
  49. c2 = av_tolower(c2);
  50. c3 = av_tolower(c3);
  51. if (c2 <= '9')
  52. c2 = c2 - '0';
  53. else
  54. c2 = c2 - 'a' + 10;
  55. if (c3 <= '9')
  56. c3 = c3 - '0';
  57. else
  58. c3 = c3 - 'a' + 10;
  59. dest[d++] = 16 * c2 + c3;
  60. } else { /* %zz or something other invalid */
  61. dest[d++] = c;
  62. dest[d++] = c2;
  63. dest[d++] = c3;
  64. }
  65. } else if (c == '+') {
  66. dest[d++] = ' ';
  67. } else {
  68. dest[d++] = c;
  69. }
  70. }
  71. return dest;
  72. }