tr_constraint_set_get_match_strings
[trust_router.git] / include / trust_router / tid.h
index 8759e6c..299b66a 100644 (file)
 
 #include <trust_router/tr_name.h>
 #include <trust_router/tr_versioning.h>
+
 #include <gssapi.h>
 
 #define TID_PORT       12309
 
-
-
 typedef enum tid_rc {
   TID_SUCCESS = 0,
   TID_ERROR
@@ -58,12 +57,15 @@ typedef struct tid_srvr_blk {
   DH *aaa_server_dh;           /* AAA server's public dh information */
 } TID_SRVR_BLK;
   
+typedef struct _tr_constraint_set  TR_CONSTRAINT_SET;
+
 typedef struct tid_resp {
   TID_RC result;
   TR_NAME *err_msg;
   TR_NAME *rp_realm;
   TR_NAME *realm;
   TR_NAME *comm;
+  TR_CONSTRAINT_SET *cons;
   TR_NAME *orig_coi;
   TID_SRVR_BLK *servers;               /* Linked list of servers */
   /* TBD -- Trust Path Used */
@@ -72,6 +74,7 @@ typedef struct tid_resp {
 typedef struct tidc_instance TIDC_INSTANCE;
 typedef struct tids_instance TIDS_INSTANCE;
 typedef struct tid_req TID_REQ;
+typedef struct json_t json_t;
 
 typedef void (TIDC_RESP_FUNC)(TIDC_INSTANCE *, TID_REQ *, TID_RESP *, void *);
 
@@ -84,10 +87,12 @@ struct tid_req {
   TR_NAME *rp_realm;
   TR_NAME *realm;
   TR_NAME *comm;
+  TR_CONSTRAINT_SET *cons;
   TR_NAME *orig_coi;
   DH *tidc_dh;                 /* Client's public dh information */
   TIDC_RESP_FUNC *resp_func;
   void *cookie;
+  json_t *json_references; /** References to objects dereferenced on request destruction*/
 };
 
 struct tidc_instance {
@@ -106,12 +111,14 @@ struct tids_instance {
   int req_count;
   char *priv_key;
   char *ipaddr;
+  const char *hostname;
   TIDS_REQ_FUNC *req_handler;
   tids_auth_func *auth_handler;
   void *cookie;
 };
 
-/* Utility funciton for TID_REQ structures, in tid/tid_req.c */
+/* Utility functions for TID_REQ structures, in tid/tid_req.c */
+TR_EXPORT TID_REQ *tid_req_new(void);
 TR_EXPORT TID_REQ *tid_req_get_next_req(TID_REQ *req);
 void tid_req_set_next_req(TID_REQ *req, TID_REQ *next_req);
 TR_EXPORT int tid_req_get_resp_sent(TID_REQ *req);
@@ -136,6 +143,12 @@ TR_EXPORT void *tid_req_get_cookie(TID_REQ *req);
 void tid_req_set_cookie(TID_REQ *req, void *cookie);
 TR_EXPORT TID_REQ *tid_dup_req (TID_REQ *orig_req);
 
+/** Decrement a reference to #json when this tid_req is cleaned up. A
+    new reference is not created; in effect the caller is handing a
+    reference they already hold to the TID_REQ.*/
+void tid_req_cleanup_json(TID_REQ *, json_t *json);
+void TR_EXPORT tid_req_free( TID_REQ *req);
+
 /* Utility functions for TID_RESP structure, in tid/tid_resp.c */
 TR_EXPORT TID_RC tid_resp_get_result(TID_RESP *resp);
 void tid_resp_set_result(TID_RESP *resp, TID_RC result);
@@ -155,7 +168,7 @@ void tid_resp_set_servers(TID_RESP *resp, TID_SRVR_BLK *servers);
 
 /* TID Client functions, in tid/tidc.c */
 TR_EXPORT TIDC_INSTANCE *tidc_create (void);
-TR_EXPORT int tidc_open_connection (TIDC_INSTANCE *tidc, char *server, gss_ctx_id_t *gssctx);
+TR_EXPORT int tidc_open_connection (TIDC_INSTANCE *tidc, char *server, unsigned int port, gss_ctx_id_t *gssctx);
 TR_EXPORT int tidc_send_request (TIDC_INSTANCE *tidc, int conn, gss_ctx_id_t gssctx, char *rp_realm, char *realm, char *coi, TIDC_RESP_FUNC *resp_handler, void *cookie);
 TR_EXPORT int tidc_fwd_request (TIDC_INSTANCE *tidc, TID_REQ *req, TIDC_RESP_FUNC *resp_handler, void *cookie);
 TR_EXPORT void tidc_destroy (TIDC_INSTANCE *tidc);
@@ -163,8 +176,8 @@ TR_EXPORT void tidc_destroy (TIDC_INSTANCE *tidc);
 /* TID Server functions, in tid/tids.c */
 TR_EXPORT TIDS_INSTANCE *tids_create (void);
 TR_EXPORT int tids_start (TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler,
-                         tids_auth_func *auth_handler,
-                         void *cookie);
+                         tids_auth_func *auth_handler, const char *hostname, 
+                         unsigned int port, void *cookie);
 TR_EXPORT int tids_send_response (TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp);
 TR_EXPORT int tids_send_err_response (TIDS_INSTANCE *tids, TID_REQ *req, const char *err_msg);
 TR_EXPORT void tids_destroy (TIDS_INSTANCE *tids);