http_client.c 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /* --- BEGIN COPYRIGHT BLOCK ---
  2. * This Program is free software; you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation; version 2 of the License.
  5. *
  6. * This Program is distributed in the hope that it will be useful, but WITHOUT
  7. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  8. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  9. *
  10. * You should have received a copy of the GNU General Public License along with
  11. * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
  12. * Place, Suite 330, Boston, MA 02111-1307 USA.
  13. *
  14. * In addition, as a special exception, Red Hat, Inc. gives You the additional
  15. * right to link the code of this Program with code not covered under the GNU
  16. * General Public License ("Non-GPL Code") and to distribute linked combinations
  17. * including the two, subject to the limitations in this paragraph. Non-GPL Code
  18. * permitted under this exception must only link to the code of this Program
  19. * through those well defined interfaces identified in the file named EXCEPTION
  20. * found in the source code files (the "Approved Interfaces"). The files of
  21. * Non-GPL Code may instantiate templates or use macros or inline functions from
  22. * the Approved Interfaces without causing the resulting work to be covered by
  23. * the GNU General Public License. Only Red Hat, Inc. may make changes or
  24. * additions to the list of Approved Interfaces. You must obey the GNU General
  25. * Public License in all respects for all of the Program code and other code used
  26. * in conjunction with the Program except the Non-GPL Code covered by this
  27. * exception. If you modify this file, you may extend this exception to your
  28. * version of the file, but you are not obligated to do so. If you do not wish to
  29. * provide this exception without modification, you must delete this exception
  30. * statement from your version and license this file solely under the GPL without
  31. * exception.
  32. *
  33. *
  34. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  35. * Copyright (C) 2005 Red Hat, Inc.
  36. * All rights reserved.
  37. * --- END COPYRIGHT BLOCK --- */
  38. #ifdef HAVE_CONFIG_H
  39. # include <config.h>
  40. #endif
  41. /**
  42. * Simple Http Client API broker plugin
  43. */
  44. #include <stdio.h>
  45. #include <string.h>
  46. #include "portable.h"
  47. #include "nspr.h"
  48. #include "slapi-plugin.h"
  49. #include "slapi-private.h"
  50. #include "http_client.h"
  51. #include "http_impl.h"
  52. #include <sys/stat.h>
  53. /*** from proto-slap.h ***/
  54. int slapd_log_error_proc( char *subsystem, char *fmt, ... );
  55. /*** from ldaplog.h ***/
  56. /* edited ldaplog.h for LDAPDebug()*/
  57. #ifndef _LDAPLOG_H
  58. #define _LDAPLOG_H
  59. #ifdef __cplusplus
  60. extern "C" {
  61. #endif
  62. #define LDAP_DEBUG_TRACE 0x00001 /* 1 */
  63. #define LDAP_DEBUG_ANY 0x04000 /* 16384 */
  64. #define LDAP_DEBUG_PLUGIN 0x10000 /* 65536 */
  65. /* debugging stuff */
  66. extern int slapd_ldap_debug;
  67. #define LDAPDebug( level, fmt, arg1, arg2, arg3 ) \
  68. { \
  69. if ( slapd_ldap_debug & level ) { \
  70. slapd_log_error_proc( NULL, fmt, arg1, arg2, arg3 ); \
  71. } \
  72. }
  73. #ifdef __cplusplus
  74. }
  75. #endif
  76. #endif /* _LDAP_H */
  77. #define HTTP_PLUGIN_SUBSYSTEM "http-client-plugin" /* used for logging */
  78. #define HTTP_PLUGIN_VERSION 0x00050050
  79. #define HTTP_SUCCESS 0
  80. #define HTTP_FAILURE -1
  81. /**
  82. * Implementation functions
  83. */
  84. static void *api[7];
  85. /**
  86. * Plugin identifiers
  87. */
  88. static Slapi_PluginDesc pdesc = { "http-client",
  89. VENDOR,
  90. DS_PACKAGE_VERSION,
  91. "HTTP Client plugin" };
  92. static Slapi_ComponentId *plugin_id = NULL;
  93. /**
  94. **
  95. ** Http plug-in management functions
  96. **
  97. **/
  98. int http_client_init(Slapi_PBlock *pb);
  99. static int http_client_start(Slapi_PBlock *pb);
  100. static int http_client_close(Slapi_PBlock *pb);
  101. /**
  102. * our functions
  103. */
  104. static void _http_init(Slapi_ComponentId *plugin_id);
  105. static int _http_get_text(char *url, char **data, int *bytesRead);
  106. static int _http_get_binary(char *url, char **data, int *bytesRead);
  107. static int _http_get_redirected_uri(char *url, char **data, int *bytesRead);
  108. static int _http_post(char *url, httpheader **httpheaderArray, char *body, char **data, int *bytesRead);
  109. static void _http_shutdown( void );
  110. /**
  111. *
  112. * Get the presence plug-in version
  113. *
  114. */
  115. int http_client_version()
  116. {
  117. return HTTP_PLUGIN_VERSION;
  118. }
  119. int http_client_init(Slapi_PBlock *pb)
  120. {
  121. int status = HTTP_SUCCESS;
  122. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> http_client_init -- BEGIN\n",0,0,0);
  123. if ( slapi_pblock_set( pb, SLAPI_PLUGIN_VERSION,
  124. SLAPI_PLUGIN_VERSION_01 ) != 0 ||
  125. slapi_pblock_set(pb, SLAPI_PLUGIN_START_FN,
  126. (void *) http_client_start ) != 0 ||
  127. slapi_pblock_set(pb, SLAPI_PLUGIN_CLOSE_FN,
  128. (void *) http_client_close ) != 0 ||
  129. slapi_pblock_set( pb, SLAPI_PLUGIN_DESCRIPTION,
  130. (void *)&pdesc ) != 0 )
  131. {
  132. slapi_log_error( SLAPI_LOG_FATAL, HTTP_PLUGIN_SUBSYSTEM,
  133. "http_client_init: failed to register plugin\n" );
  134. status = HTTP_FAILURE;
  135. }
  136. /* Retrieve and save the plugin identity to later pass to
  137. internal operations */
  138. if (slapi_pblock_get(pb, SLAPI_PLUGIN_IDENTITY, &plugin_id) != 0) {
  139. slapi_log_error(SLAPI_LOG_FATAL, HTTP_PLUGIN_SUBSYSTEM,
  140. "http_client_init: Failed to retrieve SLAPI_PLUGIN_IDENTITY\n");
  141. return HTTP_FAILURE;
  142. }
  143. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- http_client_init -- END\n",0,0,0);
  144. return status;
  145. }
  146. static int http_client_start(Slapi_PBlock *pb)
  147. {
  148. int status = HTTP_SUCCESS;
  149. /**
  150. * do some init work here
  151. */
  152. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> http_client_start -- BEGIN\n",0,0,0);
  153. api[0] = 0; /* reserved for api broker use, must be zero */
  154. api[1] = (void *)_http_init;
  155. api[2] = (void *)_http_get_text;
  156. api[3] = (void *)_http_get_binary;
  157. api[4] = (void *)_http_get_redirected_uri;
  158. api[5] = (void *)_http_shutdown;
  159. api[6] = (void *)_http_post;
  160. if( slapi_apib_register(HTTP_v1_0_GUID, api) ) {
  161. slapi_log_error( SLAPI_LOG_FATAL, HTTP_PLUGIN_SUBSYSTEM,
  162. "http_client_start: failed to register functions\n" );
  163. status = HTTP_FAILURE;
  164. }
  165. _http_init(plugin_id);
  166. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- http_client_start -- END\n",0,0,0);
  167. return status;
  168. }
  169. static int http_client_close(Slapi_PBlock *pb)
  170. {
  171. int status = HTTP_SUCCESS;
  172. /**
  173. * do cleanup
  174. */
  175. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> http_client_close -- BEGIN\n",0,0,0);
  176. slapi_apib_unregister(HTTP_v1_0_GUID);
  177. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- http_client_close -- END\n",0,0,0);
  178. return status;
  179. }
  180. /**
  181. * perform http initialization here
  182. */
  183. static void _http_init(Slapi_ComponentId *plugin_id)
  184. {
  185. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_init -- BEGIN\n",0,0,0);
  186. http_impl_init(plugin_id);
  187. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_init -- END\n",0,0,0);
  188. }
  189. /**
  190. * This method gets the data in a text format based on the
  191. * URL send.
  192. */
  193. static int _http_get_text(char *url, char **data, int *bytesRead)
  194. {
  195. int status = HTTP_SUCCESS;
  196. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_get_text -- BEGIN\n",0,0,0);
  197. status = http_impl_get_text(url, data, bytesRead);
  198. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_get_text -- END\n",0,0,0);
  199. return status;
  200. }
  201. /**
  202. * This method gets the data in a binary format based on the
  203. * URL send.
  204. */
  205. static int _http_get_binary(char *url, char **data, int *bytesRead)
  206. {
  207. int status = HTTP_SUCCESS;
  208. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_get_binary -- BEGIN\n",0,0,0);
  209. status = http_impl_get_binary(url, data, bytesRead);
  210. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_get_binary -- END\n",0,0,0);
  211. return status;
  212. }
  213. /**
  214. * This method intercepts the redirected URI and returns the location
  215. * information.
  216. */
  217. static int _http_get_redirected_uri(char *url, char **data, int *bytesRead)
  218. {
  219. int status = HTTP_SUCCESS;
  220. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_get_redirected_uri -- BEGIN\n",0,0,0);
  221. status = http_impl_get_redirected_uri(url, data, bytesRead);
  222. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_get_redirected_uri -- END\n",0,0,0);
  223. return status;
  224. }
  225. /**
  226. * This method posts the data based on the URL send.
  227. */
  228. static int _http_post(char *url, httpheader ** httpheaderArray, char *body, char **data, int *bytesRead)
  229. {
  230. int status = HTTP_SUCCESS;
  231. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_post -- BEGIN\n",0,0,0);
  232. status = http_impl_post(url, httpheaderArray, body, data, bytesRead);
  233. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_post -- END\n",0,0,0);
  234. return status;
  235. }
  236. /**
  237. * perform http shutdown here
  238. */
  239. static void _http_shutdown( void )
  240. {
  241. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_shutdown -- BEGIN\n",0,0,0);
  242. http_impl_shutdown();
  243. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_shutdown -- END\n",0,0,0);
  244. }