X-Git-Url: http://www.project-moonshot.org/gitweb/?p=trust_router.git;a=blobdiff_plain;f=tid%2Ftid_resp.c;h=3ff3d02b48b7096accf7e00b8ed4be5ac0332930;hp=3970616cc73f21d8ad1092af45731cb3b748453d;hb=3c5fb17459ff56d5e23cea059503f46a42150a1e;hpb=a1b1b820c2abe67aff1ac4e517360ee969adaed2 diff --git a/tid/tid_resp.c b/tid/tid_resp.c index 3970616..3ff3d02 100644 --- a/tid/tid_resp.c +++ b/tid/tid_resp.c @@ -53,6 +53,8 @@ static int tid_resp_destructor(void *obj) tr_free_name(resp->comm); if (resp->orig_coi!=NULL) tr_free_name(resp->orig_coi); + if (resp->request_id!=NULL) + tr_free_name(resp->request_id); return 0; } @@ -68,6 +70,7 @@ TID_RESP *tid_resp_new(TALLOC_CTX *mem_ctx) resp->cons=NULL; resp->orig_coi=NULL; resp->servers=NULL; + resp->request_id=NULL; resp->error_path=NULL; talloc_set_destructor((void *)resp, tid_resp_destructor); } @@ -80,32 +83,55 @@ void tid_resp_free(TID_RESP *resp) talloc_free(resp); } +/** + * Allocate a new copy of a TID_RESP + * + * @param mem_ctx + * @param resp + * @return + */ TID_RESP *tid_resp_dup(TALLOC_CTX *mem_ctx, TID_RESP *resp) { - TALLOC_CTX *tmp_ctx=NULL; TID_RESP *newresp=NULL; if (resp==NULL) return NULL; - tmp_ctx=talloc_new(NULL); - newresp=talloc(tmp_ctx, TID_RESP); + newresp=tid_resp_new(mem_ctx); if (NULL!=newresp) { - newresp->result=resp->result; - newresp->err_msg=tr_dup_name(resp->err_msg); - newresp->rp_realm=tr_dup_name(resp->err_msg); - newresp->realm=tr_dup_name(resp->realm); - newresp->comm=tr_dup_name(resp->comm); - newresp->orig_coi=tr_dup_name(resp->orig_coi); - newresp->servers=tid_srvr_blk_dup(newresp, resp->servers); - tid_resp_set_cons(newresp, resp->cons); - tid_resp_set_error_path(newresp, resp->error_path); + tid_resp_cpy(newresp, resp); } - talloc_free(tmp_ctx); return newresp; } +/** + * Copy contents of one TID_RESP to an existing TID_RESP + * + * @param dst + * @param src + * @return TID_SUCCESS on success, error code on error + */ +TID_RC tid_resp_cpy(TID_RESP *dst, TID_RESP *src) +{ + tid_resp_set_result(dst, tid_resp_get_result(src)); + tid_resp_set_err_msg(dst, + tr_dup_name(tid_resp_get_err_msg(src))); + tid_resp_set_rp_realm(dst, + tr_dup_name(tid_resp_get_rp_realm(src))); + tid_resp_set_realm(dst, + tr_dup_name(tid_resp_get_realm(src))); + tid_resp_set_comm(dst, + tr_dup_name(tid_resp_get_comm(src))); + tid_resp_set_cons(dst, src->cons); + tid_resp_set_orig_coi(dst, + tr_dup_name(tid_resp_get_orig_coi(src))); + dst->servers = tid_srvr_blk_dup(dst, src->servers); + tid_resp_set_error_path(dst, src->error_path); + + return TID_SUCCESS; +} + TR_EXPORT int tid_resp_get_result(TID_RESP *resp) { return(resp->result); @@ -169,6 +195,16 @@ void tid_resp_set_orig_coi(TID_RESP *resp, TR_NAME *orig_coi) resp->orig_coi = orig_coi; } +TR_EXPORT TR_NAME *tid_resp_get_request_id(TID_RESP *resp) +{ + return(resp->request_id); +} + +void tid_resp_set_request_id(TID_RESP *resp, TR_NAME *request_id) +{ + resp->request_id = request_id; +} + TR_EXPORT TID_SRVR_BLK *tid_resp_get_server(TID_RESP *resp, size_t index) { @@ -199,7 +235,7 @@ static int tid_srvr_blk_destructor(void *obj) if (srvr->aaa_server_dh!=NULL) tr_destroy_dh_params(srvr->aaa_server_dh); if (srvr->path!=NULL) - json_decref(srvr->path); + json_decref((json_t *)(srvr->path)); return 0; } @@ -238,6 +274,7 @@ TR_EXPORT TID_SRVR_BLK *tid_srvr_blk_dup(TALLOC_CTX *mem_ctx, TID_SRVR_BLK *srvr new->key_name=tr_dup_name(srvr->key_name); new->aaa_server_dh=tr_dh_dup(srvr->aaa_server_dh); new->key_expiration=srvr->key_expiration; + tid_srvr_blk_set_path(new, srvr->path); tid_srvr_blk_add(new->next, tid_srvr_blk_dup(mem_ctx, srvr->next)); @@ -255,26 +292,42 @@ TR_EXPORT TID_SRVR_BLK *tid_srvr_blk_add_func(TID_SRVR_BLK *head, TID_SRVR_BLK * while (this->next!=NULL) this=this->next; + this->next=new; + while (this!=NULL) { + talloc_steal(head, this); + this=this->next; + } return head; } -TR_EXPORT void tid_srvr_blk_set_path(TID_SRVR_BLK *block, json_t *path) +TR_EXPORT void tid_srvr_blk_set_path(TID_SRVR_BLK *block, TID_PATH *path) { if (block->path!=NULL) - json_decref(block->path); + json_decref((json_t *)(block->path)); block->path=path; if (block->path!=NULL) - json_incref(block->path); + json_incref((json_t *)(block->path)); } -TR_EXPORT const json_t *tid_srvr_get_path( const TID_SRVR_BLK *block) +TR_EXPORT const TID_PATH *tid_srvr_get_path( const TID_SRVR_BLK *block) { if (!block) return NULL; return block->path; } +TR_EXPORT int tid_srvr_get_key_expiration(const TID_SRVR_BLK *block, struct timeval *tv_out) +{ + if ((block==NULL) || (tv_out==NULL)) + return -1; /* error */ + + tv_out->tv_sec=block->key_expiration.tv_sec; + tv_out->tv_usec=block->key_expiration.tv_usec; + return 0; +} + + TR_EXPORT void tid_resp_set_cons(TID_RESP *resp, TR_CONSTRAINT_SET *cons) { json_t *jc=(json_t *)cons; @@ -296,14 +349,14 @@ TR_EXPORT void tid_resp_set_error_path(TID_RESP *resp, json_t *ep) json_incref(resp->error_path); } -TR_EXPORT json_t *tid_resp_get_error_path(const TID_RESP *resp) +TR_EXPORT const TID_PATH *tid_resp_get_error_path(const TID_RESP *resp) { if (!resp) return NULL; - return resp->error_path; + return (const TID_PATH *)(resp->error_path); } -TR_EXPORT json_t *tid_resp_get_a_path(const TID_RESP *const_resp) +TR_EXPORT const TID_PATH *tid_resp_get_a_path(const TID_RESP *const_resp) { size_t index; TID_SRVR_BLK *server; @@ -311,9 +364,8 @@ TR_EXPORT json_t *tid_resp_get_a_path(const TID_RESP *const_resp) if (!resp) return NULL; - if (resp->error_path) - return resp->error_path; + return (const TID_PATH *)(resp->error_path); tid_resp_servers_foreach( resp, server, index) { if (server->path) return server->path;