http_client.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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. /* get file mode flags for unix */
  53. #ifndef _WIN32
  54. #include <sys/stat.h>
  55. #endif
  56. /*** from proto-slap.h ***/
  57. int slapd_log_error_proc( char *subsystem, char *fmt, ... );
  58. /*** from ldaplog.h ***/
  59. /* edited ldaplog.h for LDAPDebug()*/
  60. #ifndef _LDAPLOG_H
  61. #define _LDAPLOG_H
  62. #ifdef __cplusplus
  63. extern "C" {
  64. #endif
  65. #define LDAP_DEBUG_TRACE 0x00001 /* 1 */
  66. #define LDAP_DEBUG_ANY 0x04000 /* 16384 */
  67. #define LDAP_DEBUG_PLUGIN 0x10000 /* 65536 */
  68. /* debugging stuff */
  69. # ifdef _WIN32
  70. extern int *module_ldap_debug;
  71. # define LDAPDebug( level, fmt, arg1, arg2, arg3 ) \
  72. { \
  73. if ( *module_ldap_debug & level ) { \
  74. slapd_log_error_proc( NULL, fmt, arg1, arg2, arg3 ); \
  75. } \
  76. }
  77. # else /* _WIN32 */
  78. extern int slapd_ldap_debug;
  79. # define LDAPDebug( level, fmt, arg1, arg2, arg3 ) \
  80. { \
  81. if ( slapd_ldap_debug & level ) { \
  82. slapd_log_error_proc( NULL, fmt, arg1, arg2, arg3 ); \
  83. } \
  84. }
  85. # endif /* Win32 */
  86. #ifdef __cplusplus
  87. }
  88. #endif
  89. #endif /* _LDAP_H */
  90. #define HTTP_PLUGIN_SUBSYSTEM "http-client-plugin" /* used for logging */
  91. #define HTTP_PLUGIN_VERSION 0x00050050
  92. #define HTTP_SUCCESS 0
  93. #define HTTP_FAILURE -1
  94. /**
  95. * Implementation functions
  96. */
  97. static void *api[7];
  98. /**
  99. * Plugin identifiers
  100. */
  101. static Slapi_PluginDesc pdesc = { "http-client",
  102. VENDOR,
  103. PACKAGE_VERSION,
  104. "HTTP Client plugin" };
  105. static Slapi_ComponentId *plugin_id = NULL;
  106. /**
  107. **
  108. ** Http plug-in management functions
  109. **
  110. **/
  111. int http_client_init(Slapi_PBlock *pb);
  112. static int http_client_start(Slapi_PBlock *pb);
  113. static int http_client_close(Slapi_PBlock *pb);
  114. /**
  115. * our functions
  116. */
  117. static void _http_init(Slapi_ComponentId *plugin_id);
  118. static int _http_get_text(char *url, char **data, int *bytesRead);
  119. static int _http_get_binary(char *url, char **data, int *bytesRead);
  120. static int _http_get_redirected_uri(char *url, char **data, int *bytesRead);
  121. static int _http_post(char *url, httpheader **httpheaderArray, char *body, char **data, int *bytesRead);
  122. static void _http_shutdown( void );
  123. #ifdef _WIN32
  124. int *module_ldap_debug = 0;
  125. void plugin_init_debug_level(int *level_ptr)
  126. {
  127. module_ldap_debug = level_ptr;
  128. }
  129. #endif
  130. /**
  131. *
  132. * Get the presence plug-in version
  133. *
  134. */
  135. int http_client_version()
  136. {
  137. return HTTP_PLUGIN_VERSION;
  138. }
  139. int http_client_init(Slapi_PBlock *pb)
  140. {
  141. int status = HTTP_SUCCESS;
  142. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> http_client_init -- BEGIN\n",0,0,0);
  143. if ( slapi_pblock_set( pb, SLAPI_PLUGIN_VERSION,
  144. SLAPI_PLUGIN_VERSION_01 ) != 0 ||
  145. slapi_pblock_set(pb, SLAPI_PLUGIN_START_FN,
  146. (void *) http_client_start ) != 0 ||
  147. slapi_pblock_set(pb, SLAPI_PLUGIN_CLOSE_FN,
  148. (void *) http_client_close ) != 0 ||
  149. slapi_pblock_set( pb, SLAPI_PLUGIN_DESCRIPTION,
  150. (void *)&pdesc ) != 0 )
  151. {
  152. slapi_log_error( SLAPI_LOG_FATAL, HTTP_PLUGIN_SUBSYSTEM,
  153. "http_client_init: failed to register plugin\n" );
  154. status = HTTP_FAILURE;
  155. }
  156. /* Retrieve and save the plugin identity to later pass to
  157. internal operations */
  158. if (slapi_pblock_get(pb, SLAPI_PLUGIN_IDENTITY, &plugin_id) != 0) {
  159. slapi_log_error(SLAPI_LOG_FATAL, HTTP_PLUGIN_SUBSYSTEM,
  160. "http_client_init: Failed to retrieve SLAPI_PLUGIN_IDENTITY\n");
  161. return HTTP_FAILURE;
  162. }
  163. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- http_client_init -- END\n",0,0,0);
  164. return status;
  165. }
  166. static int http_client_start(Slapi_PBlock *pb)
  167. {
  168. int status = HTTP_SUCCESS;
  169. /**
  170. * do some init work here
  171. */
  172. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> http_client_start -- BEGIN\n",0,0,0);
  173. api[0] = 0; /* reserved for api broker use, must be zero */
  174. api[1] = (void *)_http_init;
  175. api[2] = (void *)_http_get_text;
  176. api[3] = (void *)_http_get_binary;
  177. api[4] = (void *)_http_get_redirected_uri;
  178. api[5] = (void *)_http_shutdown;
  179. api[6] = (void *)_http_post;
  180. if( slapi_apib_register(HTTP_v1_0_GUID, api) ) {
  181. slapi_log_error( SLAPI_LOG_FATAL, HTTP_PLUGIN_SUBSYSTEM,
  182. "http_client_start: failed to register functions\n" );
  183. status = HTTP_FAILURE;
  184. }
  185. _http_init(plugin_id);
  186. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- http_client_start -- END\n",0,0,0);
  187. return status;
  188. }
  189. static int http_client_close(Slapi_PBlock *pb)
  190. {
  191. int status = HTTP_SUCCESS;
  192. /**
  193. * do cleanup
  194. */
  195. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> http_client_close -- BEGIN\n",0,0,0);
  196. slapi_apib_unregister(HTTP_v1_0_GUID);
  197. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- http_client_close -- END\n",0,0,0);
  198. return status;
  199. }
  200. /**
  201. * perform http initialization here
  202. */
  203. static void _http_init(Slapi_ComponentId *plugin_id)
  204. {
  205. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_init -- BEGIN\n",0,0,0);
  206. http_impl_init(plugin_id);
  207. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_init -- END\n",0,0,0);
  208. }
  209. /**
  210. * This method gets the data in a text format based on the
  211. * URL send.
  212. */
  213. static int _http_get_text(char *url, char **data, int *bytesRead)
  214. {
  215. int status = HTTP_SUCCESS;
  216. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_get_text -- BEGIN\n",0,0,0);
  217. status = http_impl_get_text(url, data, bytesRead);
  218. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_get_text -- END\n",0,0,0);
  219. return status;
  220. }
  221. /**
  222. * This method gets the data in a binary format based on the
  223. * URL send.
  224. */
  225. static int _http_get_binary(char *url, char **data, int *bytesRead)
  226. {
  227. int status = HTTP_SUCCESS;
  228. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_get_binary -- BEGIN\n",0,0,0);
  229. status = http_impl_get_binary(url, data, bytesRead);
  230. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_get_binary -- END\n",0,0,0);
  231. return status;
  232. }
  233. /**
  234. * This method intercepts the redirected URI and returns the location
  235. * information.
  236. */
  237. static int _http_get_redirected_uri(char *url, char **data, int *bytesRead)
  238. {
  239. int status = HTTP_SUCCESS;
  240. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_get_redirected_uri -- BEGIN\n",0,0,0);
  241. status = http_impl_get_redirected_uri(url, data, bytesRead);
  242. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_get_redirected_uri -- END\n",0,0,0);
  243. return status;
  244. }
  245. /**
  246. * This method posts the data based on the URL send.
  247. */
  248. static int _http_post(char *url, httpheader ** httpheaderArray, char *body, char **data, int *bytesRead)
  249. {
  250. int status = HTTP_SUCCESS;
  251. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_post -- BEGIN\n",0,0,0);
  252. status = http_impl_post(url, httpheaderArray, body, data, bytesRead);
  253. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_post -- END\n",0,0,0);
  254. return status;
  255. }
  256. /**
  257. * perform http shutdown here
  258. */
  259. static void _http_shutdown( void )
  260. {
  261. LDAPDebug( LDAP_DEBUG_PLUGIN, "--> _http_shutdown -- BEGIN\n",0,0,0);
  262. http_impl_shutdown();
  263. LDAPDebug( LDAP_DEBUG_PLUGIN, "<-- _http_shutdown -- END\n",0,0,0);
  264. }