minisoap.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* $Id: minisoap.c,v 1.24 2015/10/26 17:05:07 nanard Exp $ */
  2. /* Project : miniupnp
  3. * Author : Thomas Bernard
  4. * Copyright (c) 2005-2015 Thomas Bernard
  5. * This software is subject to the conditions detailed in the
  6. * LICENCE file provided in this distribution.
  7. *
  8. * Minimal SOAP implementation for UPnP protocol.
  9. */
  10. #include <stdio.h>
  11. #include <string.h>
  12. #ifdef _WIN32
  13. #include <io.h>
  14. #include <winsock2.h>
  15. #define snprintf _snprintf
  16. #else
  17. #include <unistd.h>
  18. #include <sys/types.h>
  19. #include <sys/socket.h>
  20. #endif
  21. #include "minisoap.h"
  22. #ifdef _WIN32
  23. #define OS_STRING "Win32"
  24. #define MINIUPNPC_VERSION_STRING "2.0"
  25. #define UPNP_VERSION_STRING "UPnP/1.1"
  26. #endif
  27. /* only for malloc */
  28. #include <stdlib.h>
  29. #ifdef _WIN32
  30. #define PRINT_SOCKET_ERROR(x) printf("Socket error: %s, %d\n", x, WSAGetLastError());
  31. #else
  32. #define PRINT_SOCKET_ERROR(x) perror(x)
  33. #endif
  34. /* httpWrite sends the headers and the body to the socket
  35. * and returns the number of bytes sent */
  36. static int
  37. httpWrite(int fd, const char * body, int bodysize,
  38. const char * headers, int headerssize)
  39. {
  40. int n = 0;
  41. /*n = write(fd, headers, headerssize);*/
  42. /*if(bodysize>0)
  43. n += write(fd, body, bodysize);*/
  44. /* Note : my old linksys router only took into account
  45. * soap request that are sent into only one packet */
  46. char * p;
  47. /* TODO: AVOID MALLOC, we could use writev() for that */
  48. p = malloc(headerssize+bodysize);
  49. if(!p)
  50. return -1;
  51. memcpy(p, headers, headerssize);
  52. memcpy(p+headerssize, body, bodysize);
  53. /*n = write(fd, p, headerssize+bodysize);*/
  54. n = send(fd, p, headerssize+bodysize, 0);
  55. if(n<0) {
  56. PRINT_SOCKET_ERROR("send");
  57. }
  58. /* disable send on the socket */
  59. /* draytek routers dont seems to like that... */
  60. #if 0
  61. #ifdef _WIN32
  62. if(shutdown(fd, SD_SEND)<0) {
  63. #else
  64. if(shutdown(fd, SHUT_WR)<0) { /*SD_SEND*/
  65. #endif
  66. PRINT_SOCKET_ERROR("shutdown");
  67. }
  68. #endif
  69. free(p);
  70. return n;
  71. }
  72. /* self explanatory */
  73. int soapPostSubmit(int fd,
  74. const char * url,
  75. const char * host,
  76. unsigned short port,
  77. const char * action,
  78. const char * body,
  79. const char * httpversion)
  80. {
  81. int bodysize;
  82. char headerbuf[512];
  83. int headerssize;
  84. char portstr[8];
  85. bodysize = (int)strlen(body);
  86. /* We are not using keep-alive HTTP connections.
  87. * HTTP/1.1 needs the header Connection: close to do that.
  88. * This is the default with HTTP/1.0
  89. * Using HTTP/1.1 means we need to support chunked transfer-encoding :
  90. * When using HTTP/1.1, the router "BiPAC 7404VNOX" always use chunked
  91. * transfer encoding. */
  92. /* Connection: Close is normally there only in HTTP/1.1 but who knows */
  93. portstr[0] = '\0';
  94. if(port != 80)
  95. snprintf(portstr, sizeof(portstr), ":%hu", port);
  96. headerssize = snprintf(headerbuf, sizeof(headerbuf),
  97. "POST %s HTTP/%s\r\n"
  98. "Host: %s%s\r\n"
  99. "User-Agent: " OS_STRING ", " UPNP_VERSION_STRING ", MiniUPnPc/" MINIUPNPC_VERSION_STRING "\r\n"
  100. "Content-Length: %d\r\n"
  101. "Content-Type: text/xml\r\n"
  102. "SOAPAction: \"%s\"\r\n"
  103. "Connection: Close\r\n"
  104. "Cache-Control: no-cache\r\n" /* ??? */
  105. "Pragma: no-cache\r\n"
  106. "\r\n",
  107. url, httpversion, host, portstr, bodysize, action);
  108. if ((unsigned int)headerssize >= sizeof(headerbuf))
  109. return -1;
  110. #ifdef DEBUG
  111. /*printf("SOAP request : headersize=%d bodysize=%d\n",
  112. headerssize, bodysize);
  113. */
  114. printf("SOAP request : POST %s HTTP/%s - Host: %s%s\n",
  115. url, httpversion, host, portstr);
  116. printf("SOAPAction: \"%s\" - Content-Length: %d\n", action, bodysize);
  117. printf("Headers :\n%s", headerbuf);
  118. printf("Body :\n%s\n", body);
  119. #endif
  120. return httpWrite(fd, body, bodysize, headerbuf, headerssize);
  121. }