Move TRP messaging to tr_msg.c. Fix old bug.
[trust_router.git] / common / tr_msg.c
1 /*
2  * Copyright (c) 2012-2014 , JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34 #include <sys/socket.h>
35 #include <netinet/in.h>
36 #include <arpa/inet.h>
37 #include <string.h>
38 #include <openssl/dh.h>
39 #include <jansson.h>
40 #include <assert.h>
41 #include <talloc.h>
42
43
44 #include <tr_msg.h>
45 #include <trust_router/tr_name.h>
46 #include <tid_internal.h>
47 #include <trp_internal.h>
48 #include <trust_router/tr_constraint.h>
49 #include <tr_debug.h>
50
51 /* JSON helpers */
52 /* Read attribute attr from msg as an integer. Returns nonzero on error. */
53 static int tr_msg_get_json_integer(json_t *jmsg, const char *attr, int *dest)
54 {
55   json_t *obj;
56
57   obj=json_object_get(jmsg, attr);
58   if (obj == NULL) {
59     return -1;
60   }
61   /* check type */
62   if (!json_is_integer(obj)) {
63     return -1;
64   }
65
66   (*dest)=json_integer_value(obj);
67   return 0;
68 }
69
70 /* Read attribute attr from msg as a string. Copies string into mem_ctx context so jmsg can
71  * be destroyed safely. Returns nonzero on error. */
72 static int tr_msg_get_json_string(json_t *jmsg, const char *attr, char **dest, TALLOC_CTX *mem_ctx)
73 {
74   json_t *obj;
75
76   obj=json_object_get(jmsg, attr);
77   if (obj == NULL)
78     return -1;
79
80   /* check type */
81   if (!json_is_string(obj))
82     return -1;
83
84   *dest=talloc_strdup(mem_ctx, json_string_value(obj));
85   if (*dest==NULL)
86     return -1;
87
88   return 0;
89 }
90
91 enum msg_type tr_msg_get_msg_type(TR_MSG *msg) 
92 {
93   return msg->msg_type;
94 }
95
96 void tr_msg_set_msg_type(TR_MSG *msg, enum msg_type type)
97 {
98   msg->msg_type = type;
99 }
100
101 TID_REQ *tr_msg_get_req(TR_MSG *msg)
102 {
103   if (msg->msg_type == TID_REQUEST)
104     return (TID_REQ *)msg->msg_rep;
105   return NULL;
106 }
107
108 void tr_msg_set_req(TR_MSG *msg, TID_REQ *req)
109 {
110   msg->msg_rep = req;
111   msg->msg_type = TID_REQUEST;
112 }
113
114 TID_RESP *tr_msg_get_resp(TR_MSG *msg)
115 {
116   if (msg->msg_type == TID_RESPONSE)
117     return (TID_RESP *)msg->msg_rep;
118   return NULL;
119 }
120
121 void tr_msg_set_resp(TR_MSG *msg, TID_RESP *resp)
122 {
123   msg->msg_rep = resp;
124   msg->msg_type = TID_RESPONSE;
125 }
126
127 TRP_UPD *tr_msg_get_trp_upd(TR_MSG *msg)
128 {
129   if (msg->msg_type == TRP_UPDATE)
130     return (TRP_UPD *)msg->msg_rep;
131   return NULL;
132 }
133
134 void tr_msg_set_trp_upd(TR_MSG *msg, TRP_UPD *update)
135 {
136   msg->msg_rep=update;
137   msg->msg_type=TRP_UPDATE;
138 }
139
140 TRP_REQ *tr_msg_get_trp_req(TR_MSG *msg)
141 {
142   if (msg->msg_type == TRP_REQUEST)
143     return (TRP_REQ *)msg->msg_rep;
144   return NULL;
145 }
146
147 void tr_msg_set_trp_req(TR_MSG *msg, TRP_REQ *req)
148 {
149   msg->msg_rep=req;
150   msg->msg_type=TRP_REQUEST;
151 }
152
153 static json_t *tr_msg_encode_dh(DH *dh)
154 {
155   json_t *jdh = NULL;
156   json_t *jbn = NULL;
157
158   if ((!dh) || (!dh->p) || (!dh->g) || (!dh->pub_key))
159     return NULL;
160
161   jdh = json_object();
162
163   jbn = json_string(BN_bn2hex(dh->p));
164   json_object_set_new(jdh, "dh_p", jbn);
165
166   jbn = json_string(BN_bn2hex(dh->g));
167   json_object_set_new(jdh, "dh_g", jbn);
168
169   jbn = json_string(BN_bn2hex(dh->pub_key));
170   json_object_set_new(jdh, "dh_pub_key", jbn);
171
172   return jdh;
173 }
174
175 static DH *tr_msg_decode_dh(json_t *jdh)
176 {
177   DH *dh = NULL;
178   json_t *jp = NULL;
179   json_t *jg = NULL;
180   json_t *jpub_key = NULL;
181
182   if (!(dh = malloc(sizeof(DH)))) {
183     tr_crit("tr_msg_decode_dh(): Error allocating DH structure.");
184     return NULL;
185   }
186  
187   memset(dh, 0, sizeof(DH));
188
189   /* store required fields from dh object */
190   if ((NULL == (jp = json_object_get(jdh, "dh_p"))) ||
191       (NULL == (jg = json_object_get(jdh, "dh_g"))) ||
192       (NULL == (jpub_key = json_object_get(jdh, "dh_pub_key")))) {
193     tr_debug("tr_msg_decode_dh(): Error parsing dh_info.");
194     free(dh);
195     return NULL;
196   }
197
198   BN_hex2bn(&(dh->p), json_string_value(jp));
199   BN_hex2bn(&(dh->g), json_string_value(jg));
200   BN_hex2bn(&(dh->pub_key), json_string_value(jpub_key));
201
202   return dh;
203 }
204
205 static json_t * tr_msg_encode_tidreq(TID_REQ *req)
206 {
207   json_t *jreq = NULL;
208   json_t *jstr = NULL;
209
210   if ((!req) || (!req->rp_realm) || (!req->realm) || !(req->comm))
211     return NULL;
212
213   assert(jreq = json_object());
214
215   jstr = json_string(req->rp_realm->buf);
216   json_object_set_new(jreq, "rp_realm", jstr);
217
218   jstr = json_string(req->realm->buf);
219   json_object_set_new(jreq, "target_realm", jstr);
220
221   jstr = json_string(req->comm->buf);
222   json_object_set_new(jreq, "community", jstr);
223   
224   if (req->orig_coi) {
225     jstr = json_string(req->orig_coi->buf);
226     json_object_set_new(jreq, "orig_coi", jstr);
227   }
228
229   json_object_set_new(jreq, "dh_info", tr_msg_encode_dh(req->tidc_dh));
230
231   if (req->cons)
232     json_object_set(jreq, "constraints", (json_t *) req->cons);
233
234   if (req->path)
235     json_object_set(jreq, "path", req->path);
236   if (req->expiration_interval)
237     json_object_set_new(jreq, "expiration_interval",
238                         json_integer(req->expiration_interval));
239   
240   return jreq;
241 }
242
243 static TID_REQ *tr_msg_decode_tidreq(json_t *jreq)
244 {
245   TID_REQ *treq = NULL;
246   json_t *jrp_realm = NULL;
247   json_t *jrealm = NULL;
248   json_t *jcomm = NULL;
249   json_t *jorig_coi = NULL;
250   json_t *jdh = NULL;
251   json_t *jpath = NULL;
252   json_t *jexpire_interval = NULL;
253
254   if (!(treq =tid_req_new())) {
255     tr_crit("tr_msg_decode_tidreq(): Error allocating TID_REQ structure.");
256     return NULL;
257   }
258  
259   /* store required fields from request */
260   if ((NULL == (jrp_realm = json_object_get(jreq, "rp_realm"))) ||
261       (NULL == (jrealm = json_object_get(jreq, "target_realm"))) ||
262       (NULL == (jcomm = json_object_get(jreq, "community")))) {
263     tr_notice("tr_msg_decode(): Error parsing required fields.");
264     tid_req_free(treq);
265     return NULL;
266   }
267
268   jpath = json_object_get(jreq, "path");
269   jexpire_interval = json_object_get(jreq, "expiration_interval");
270
271   treq->rp_realm = tr_new_name((char *)json_string_value(jrp_realm));
272   treq->realm = tr_new_name((char *)json_string_value(jrealm));
273   treq->comm = tr_new_name((char *)json_string_value(jcomm));
274
275   /* Get DH Info from the request */
276   if (NULL == (jdh = json_object_get(jreq, "dh_info"))) {
277     tr_debug("tr_msg_decode(): Error parsing dh_info.");
278     tid_req_free(treq);
279     return NULL;
280   }
281   treq->tidc_dh = tr_msg_decode_dh(jdh);
282
283   /* store optional "orig_coi" field */
284   if (NULL != (jorig_coi = json_object_get(jreq, "orig_coi"))) {
285     treq->orig_coi = tr_new_name((char *)json_string_value(jorig_coi));
286   }
287
288   treq->cons = (TR_CONSTRAINT_SET *) json_object_get(jreq, "constraints");
289   if (treq->cons) {
290     if (!tr_constraint_set_validate(treq->cons)) {
291       tr_debug("Constraint set validation failed");
292     tid_req_free(treq);
293     return NULL;
294     }
295     json_incref((json_t *) treq->cons);
296     tid_req_cleanup_json(treq, (json_t *) treq->cons);
297   }
298   if (jpath) {
299     json_incref(jpath);
300     treq->path = jpath;
301     tid_req_cleanup_json(treq, jpath);
302   }
303   if (jexpire_interval)
304     treq->expiration_interval = json_integer_value(jexpire_interval);
305   
306   return treq;
307 }
308
309 static json_t *tr_msg_encode_one_server(TID_SRVR_BLK *srvr)
310 {
311   json_t *jsrvr = NULL;
312   json_t *jstr = NULL;
313   gchar *time_str = g_time_val_to_iso8601(&srvr->key_expiration);
314
315   tr_debug("Encoding one server.");
316
317   jsrvr = json_object();
318
319   /* Server IP Address -- TBD handle IPv6 */
320   jstr = json_string(inet_ntoa(srvr->aaa_server_addr));
321   json_object_set_new(jsrvr, "server_addr", jstr);
322
323   json_object_set_new(jsrvr,
324                       "key_expiration", json_string(time_str));
325   g_free(time_str);
326   /* Server DH Block */
327   jstr = json_string(srvr->key_name->buf);
328   json_object_set_new(jsrvr, "key_name", jstr);
329   json_object_set_new(jsrvr, "server_dh", tr_msg_encode_dh(srvr->aaa_server_dh));
330   if (srvr->path)
331     /* The path is owned by the srvr, so grab an extra ref*/
332     json_object_set(jsrvr, "path", srvr->path);
333   return jsrvr;
334 }
335
336 static int tr_msg_decode_one_server(json_t *jsrvr, TID_SRVR_BLK *srvr) 
337 {
338   json_t *jsrvr_addr = NULL;
339   json_t *jsrvr_kn = NULL;
340   json_t *jsrvr_dh = NULL;
341   json_t *jsrvr_expire = NULL;
342
343   if (jsrvr == NULL)
344     return -1;
345
346
347   if ((NULL == (jsrvr_addr = json_object_get(jsrvr, "server_addr"))) ||
348       (NULL == (jsrvr_kn = json_object_get(jsrvr, "key_name"))) ||
349       (NULL == (jsrvr_dh = json_object_get(jsrvr, "server_dh")))) {
350     tr_notice("tr_msg_decode_one_server(): Error parsing required fields.");
351     return -1;
352   }
353   
354   /* TBD -- handle IPv6 Addresses */
355   inet_aton(json_string_value(jsrvr_addr), &(srvr->aaa_server_addr));
356   srvr->key_name = tr_new_name((char *)json_string_value(jsrvr_kn));
357   srvr->aaa_server_dh = tr_msg_decode_dh(jsrvr_dh);
358   srvr->path = json_object_get(jsrvr, "path");
359   jsrvr_expire = json_object_get(jsrvr, "key_expiration");
360   if (jsrvr_expire && json_is_string(jsrvr_expire)) {
361     if (!g_time_val_from_iso8601(json_string_value(jsrvr_expire),
362                                  &srvr->key_expiration))
363       tr_notice("Key expiration %s cannot be parsed", json_string_value(jsrvr_expire));
364   }
365   
366   return 0;
367 }
368
369 static json_t *tr_msg_encode_servers(TID_RESP *resp)
370 {
371   json_t *jservers = NULL;
372   json_t *jsrvr = NULL;
373   TID_SRVR_BLK *srvr = NULL;
374   size_t index;
375
376   jservers = json_array();
377
378   tid_resp_servers_foreach(resp, srvr, index) {
379     if ((NULL == (jsrvr = tr_msg_encode_one_server(srvr))) ||
380         (-1 == json_array_append_new(jservers, jsrvr))) {
381       return NULL;
382     }
383   }
384
385   //  tr_debug("tr_msg_encode_servers(): servers contains:");
386   //  tr_debug("%s", json_dumps(jservers, 0));
387   return jservers;
388 }
389
390 static TID_SRVR_BLK *tr_msg_decode_servers(void * ctx, json_t *jservers, size_t *out_len)
391 {
392   TID_SRVR_BLK *servers = NULL;
393   json_t *jsrvr;
394   size_t i, num_servers;
395
396   num_servers = json_array_size(jservers);
397   tr_debug("tr_msg_decode_servers(): Number of servers = %u.", (unsigned) num_servers);
398   
399   if (0 == num_servers) {
400     tr_debug("tr_msg_decode_servers(): Server array is empty."); 
401     return NULL;
402   }
403   servers = talloc_zero_array(ctx, TID_SRVR_BLK, num_servers);
404
405   for (i = 0; i < num_servers; i++) {
406     jsrvr = json_array_get(jservers, i);
407     if (0 != tr_msg_decode_one_server(jsrvr, &servers[i])) {
408       talloc_free(servers);
409       return NULL;
410     }
411
412
413   }
414   *out_len = num_servers;
415   return servers;
416 }
417
418 static json_t * tr_msg_encode_tidresp(TID_RESP *resp)
419 {
420   json_t *jresp = NULL;
421   json_t *jstr = NULL;
422   json_t *jservers = NULL;
423
424   if ((!resp) || (!resp->rp_realm) || (!resp->realm) || !(resp->comm))
425     return NULL;
426
427   jresp = json_object();
428
429   if (TID_ERROR == resp->result) {
430     jstr = json_string("error");
431     json_object_set_new(jresp, "result", jstr);
432     if (resp->err_msg) {
433       jstr = json_string(resp->err_msg->buf);
434       json_object_set_new(jresp, "err_msg", jstr);
435     }
436   }
437   else {
438     jstr = json_string("success");
439     json_object_set_new(jresp, "result", jstr);
440   }
441
442   jstr = json_string(resp->rp_realm->buf);
443   json_object_set_new(jresp, "rp_realm", jstr);
444
445   jstr = json_string(resp->realm->buf);
446   json_object_set_new(jresp, "target_realm", jstr);
447
448   jstr = json_string(resp->comm->buf);
449   json_object_set_new(jresp, "comm", jstr);
450
451   if (resp->orig_coi) {
452     jstr = json_string(resp->orig_coi->buf);
453     json_object_set_new(jresp, "orig_coi", jstr);
454   }
455
456   if (NULL == resp->servers) {
457     tr_debug("tr_msg_encode_tidresp(): No servers to encode.");
458   }
459   else {
460     jservers = tr_msg_encode_servers(resp);
461     json_object_set_new(jresp, "servers", jservers);
462   }
463   if (resp->error_path)
464     json_object_set(jresp, "error_path", resp->error_path);
465   
466   
467   return jresp;
468 }
469
470 static TID_RESP *tr_msg_decode_tidresp(json_t *jresp)
471 {
472   TID_RESP *tresp = NULL;
473   json_t *jresult = NULL;
474   json_t *jrp_realm = NULL;
475   json_t *jrealm = NULL;
476   json_t *jcomm = NULL;
477   json_t *jorig_coi = NULL;
478   json_t *jservers = NULL;
479   json_t *jerr_msg = NULL;
480
481   if (!(tresp=tid_resp_new(NULL))) {
482     tr_crit("tr_msg_decode_tidresp(): Error allocating TID_RESP structure.");
483     return NULL;
484   }
485  
486
487   /* store required fields from response */
488   if ((NULL == (jresult = json_object_get(jresp, "result"))) ||
489       (!json_is_string(jresult)) ||
490       (NULL == (jrp_realm = json_object_get(jresp, "rp_realm"))) ||
491       (!json_is_string(jrp_realm)) ||
492       (NULL == (jrealm = json_object_get(jresp, "target_realm"))) ||
493       (!json_is_string(jrealm)) ||
494       (NULL == (jcomm = json_object_get(jresp, "comm"))) ||
495       (!json_is_string(jcomm))) {
496     tr_debug("tr_msg_decode_tidresp(): Error parsing response.");
497     talloc_free(tresp);
498     return NULL;
499   }
500
501   if (0 == (strcmp(json_string_value(jresult), "success"))) {
502     tr_debug("tr_msg_decode_tidresp(): Success! result = %s.", json_string_value(jresult));
503     if ((NULL != (jservers = json_object_get(jresp, "servers"))) ||
504         (!json_is_array(jservers))) {
505       tresp->servers = tr_msg_decode_servers(tresp, jservers, &tresp->num_servers); 
506     } 
507     else {
508       talloc_free(tresp);
509       return NULL;
510     }
511     tresp->result = TID_SUCCESS;
512   }
513   else {
514     tresp->result = TID_ERROR;
515     tr_debug("tr_msg_decode_tidresp(): Error! result = %s.", json_string_value(jresult));
516     if ((NULL != (jerr_msg = json_object_get(jresp, "err_msg"))) ||
517         (!json_is_string(jerr_msg))) {
518       tresp->err_msg = tr_new_name((char *)json_string_value(jerr_msg));
519     }
520   }
521
522   tresp->rp_realm = tr_new_name((char *)json_string_value(jrp_realm));
523   tresp->realm = tr_new_name((char *)json_string_value(jrealm));
524   tresp->comm = tr_new_name((char *)json_string_value(jcomm));
525
526   /* store optional "orig_coi" field */
527   if ((NULL != (jorig_coi = json_object_get(jresp, "orig_coi"))) &&
528       (!json_is_object(jorig_coi))) {
529     tresp->orig_coi = tr_new_name((char *)json_string_value(jorig_coi));
530   }
531      
532   return tresp;
533 }
534
535
536 /* Information records for TRP update msg 
537  * requires that jrec already be allocated */
538 static TRP_RC tr_msg_encode_inforec_route(json_t *jrec, TRP_INFOREC_DATA rec_data)
539 {
540   TRP_INFOREC_ROUTE *route=rec_data.route;
541   json_t *jstr=NULL;
542   json_t *jint=NULL;
543   char *s=NULL;
544
545   if (route==NULL)
546     return TRP_BADTYPE;
547
548   s=tr_name_strdup(route->comm);
549   if (s==NULL)
550     return TRP_NOMEM;
551   jstr=json_string(s);
552   free(s);s=NULL;
553   if(jstr==NULL)
554     return TRP_ERROR;
555   json_object_set_new(jrec, "community", jstr);
556
557   s=tr_name_strdup(route->realm);
558   if (s==NULL)
559     return TRP_NOMEM;
560   jstr=json_string(s);
561   free(s);s=NULL;
562   if(jstr==NULL)
563     return TRP_ERROR;
564   json_object_set_new(jrec, "realm", jstr);
565
566   s=tr_name_strdup(route->trust_router);
567   if (s==NULL)
568     return TRP_NOMEM;
569   jstr=json_string(s);
570   free(s);s=NULL;
571   if(jstr==NULL)
572     return TRP_ERROR;
573   json_object_set_new(jrec, "trust_router", jstr);
574
575   jint=json_integer(route->metric);
576   if(jint==NULL)
577     return TRP_ERROR;
578   json_object_set_new(jrec, "metric", jint);
579
580   jint=json_integer(route->interval);
581   if(jint==NULL)
582     return TRP_ERROR;
583   json_object_set_new(jrec, "interval", jint);
584
585   return TRP_SUCCESS;
586 }
587
588 static json_t *tr_msg_encode_inforec(TRP_INFOREC *rec)
589 {
590   json_t *jrec=NULL;
591   json_t *jstr=NULL;
592
593   if ((rec==NULL) || (rec->type==TRP_INFOREC_TYPE_UNKNOWN))
594     return NULL;
595
596   jrec=json_object();
597   if (jrec==NULL)
598     return NULL;
599
600   jstr=json_string(trp_inforec_type_to_string(rec->type));
601   if (jstr==NULL) {
602     json_decref(jrec);
603     return NULL;
604   }
605   json_object_set_new(jrec, "record_type", jstr);
606
607   switch (rec->type) {
608   case TRP_INFOREC_TYPE_ROUTE:
609     if (TRP_SUCCESS!=tr_msg_encode_inforec_route(jrec, rec->data)) {
610       json_decref(jrec);
611       return NULL;
612     }
613     break;
614   default:
615     json_decref(jrec);
616     return NULL;
617   }
618   return jrec;
619 }
620
621 /* decode a single record */
622 static TRP_INFOREC *tr_msg_decode_trp_inforec(TALLOC_CTX *mem_ctx, json_t *jrecord)
623 {
624   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
625   TRP_INFOREC_TYPE rectype;
626   TRP_INFOREC *rec=NULL;
627   TRP_RC rc=TRP_ERROR;
628   char *s=NULL;
629   int num=0;
630   
631   if (0!=tr_msg_get_json_string(jrecord, "record_type", &s, tmp_ctx))
632     goto cleanup;
633
634   rectype=trp_inforec_type_from_string(s);
635   talloc_free(s); s=NULL;
636
637   rec=trp_inforec_new(tmp_ctx, rectype);
638   if (rec==NULL) {
639     rc=TRP_NOMEM;
640     goto cleanup;
641   }
642
643   /* We only support route_info records for now*/
644   if (rec->type!=TRP_INFOREC_TYPE_ROUTE) {
645     rc=TRP_UNSUPPORTED;
646     goto cleanup;
647   }
648
649   tr_debug("tr_msg_decode_trp_inforec: '%s' record found.", trp_inforec_type_to_string(rec->type));
650
651   rc=tr_msg_get_json_string(jrecord, "community", &s, tmp_ctx);
652   if (rc != TRP_SUCCESS)
653     goto cleanup;
654   if (TRP_SUCCESS!=trp_inforec_set_comm(rec, tr_new_name(s)))
655     goto cleanup;
656   talloc_free(s); s=NULL;
657
658   rc=tr_msg_get_json_string(jrecord, "realm", &s, tmp_ctx);
659   if (rc != TRP_SUCCESS)
660     goto cleanup;
661   if (TRP_SUCCESS!=trp_inforec_set_realm(rec, tr_new_name(s))) /* assumes route_info */
662     goto cleanup;
663   talloc_free(s); s=NULL;
664
665   rc=tr_msg_get_json_string(jrecord, "trust_router", &s, tmp_ctx);
666   if (rc != TRP_SUCCESS)
667     goto cleanup;
668   if (TRP_SUCCESS!=trp_inforec_set_trust_router(rec, tr_new_name(s))) /* assumes route_info */
669     goto cleanup;
670   talloc_free(s); s=NULL;
671
672   rc=tr_msg_get_json_integer(jrecord, "metric", &num);
673   if ((rc != TRP_SUCCESS) || (TRP_SUCCESS!=trp_inforec_set_metric(rec,num)))
674     goto cleanup;
675
676   rc=tr_msg_get_json_integer(jrecord, "interval", &num);
677   if ((rc != TRP_SUCCESS) || (TRP_SUCCESS!=trp_inforec_set_interval(rec,num)))
678     goto cleanup;
679
680   talloc_steal(mem_ctx, rec);
681   rc=TRP_SUCCESS;
682
683 cleanup:
684   if (rc != TRP_SUCCESS) {
685     trp_inforec_free(rec);
686     rec=NULL;
687   }
688   talloc_free(tmp_ctx);
689   return rec;
690 }
691
692 /* TRP update msg */
693 static json_t *tr_msg_encode_trp_upd(TRP_UPD *update)
694 {
695   json_t *jupdate=NULL;
696   json_t *jrecords=NULL;
697   json_t *jrec=NULL;
698   TRP_INFOREC *rec;
699
700   if (update==NULL)
701     return NULL;
702
703   jupdate=json_object();
704   if (jupdate==NULL)
705     return NULL;
706
707   jrecords=json_array();
708   if (jrecords==NULL) {
709     json_decref(jupdate);
710     return NULL;
711   }
712   json_object_set_new(jupdate, "records", jrecords); /* jrecords now a "borrowed" reference */
713   for (rec=update->records; rec!=NULL; rec=rec->next) {
714     jrec=tr_msg_encode_inforec(rec);
715     if (jrec==NULL) {
716       json_decref(jupdate); /* also decs jrecords and any elements */
717       return NULL;
718     }
719     if (0!=json_array_append_new(jrecords, jrec)) {
720       json_decref(jupdate); /* also decs jrecords and any elements */
721       json_decref(jrec); /* this one did not get added so dec explicitly */
722       return NULL;
723     }
724   }
725
726   return jupdate;
727 }
728
729 /*Creates a linked list of records in the msg->body talloc context.
730  * An error will be returned if any unparseable records are encountered. 
731  */
732 static TRP_UPD *tr_msg_decode_trp_upd(TALLOC_CTX *mem_ctx, json_t *jupdate)
733 {
734   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
735   json_t *jrecords=NULL;
736   size_t ii=0;
737   TRP_UPD *update=NULL;
738   TRP_INFOREC *new_rec=NULL;
739   TRP_INFOREC *list_tail=NULL;
740   TRP_RC rc=TRP_ERROR;
741
742   update=trp_upd_new(tmp_ctx);
743   if (update==NULL) {
744     rc=TRP_NOMEM;
745     goto cleanup;
746   }
747
748   jrecords=json_object_get(jupdate, "records");
749   if ((jrecords==NULL) || (!json_is_array(jrecords))) {
750     rc=TRP_NOPARSE;
751     goto cleanup;
752   }
753
754   tr_debug("tr_msg_decode_trp_upd: found %d records", json_array_size(jrecords));
755   /* process the array */
756   for (ii=0; ii<json_array_size(jrecords); ii++) {
757     new_rec=tr_msg_decode_trp_inforec(update, json_array_get(jrecords, ii));
758     if (new_rec==NULL) {
759       rc=TRP_NOPARSE;
760       goto cleanup;
761     }
762
763     if (list_tail==NULL)
764       update->records=new_rec; /* first is a special case */
765     else
766       list_tail->next=new_rec;
767
768     list_tail=new_rec;
769   }
770
771   /* Succeeded. Move new allocations into the correct talloc context */
772   talloc_steal(mem_ctx, update);
773   rc=TRP_SUCCESS;
774
775 cleanup:
776   talloc_free(tmp_ctx);
777   if (rc!=TRP_SUCCESS)
778     return NULL;
779   return update;
780 }
781
782 static json_t *tr_msg_encode_trp_req(TRP_REQ *req)
783 {
784   json_t *jbody=NULL;
785   json_t *jstr=NULL;
786   char *s=NULL;
787
788   if (req==NULL)
789     return NULL;
790
791   jbody=json_object();
792   if (jbody==NULL)
793     return NULL;
794
795   s=tr_name_strdup(req->comm); /* ensures null termination */
796   if (s==NULL) {
797     json_decref(jbody);
798     return NULL;
799   }
800   jstr=json_string(s);
801   free(s); s=NULL;
802   if (jstr==NULL) {
803     json_decref(jbody);
804     return NULL;
805   }
806   json_object_set_new(jbody, "community", jstr);
807     
808   s=tr_name_strdup(req->realm); /* ensures null termination */
809   if (s==NULL) {
810     json_decref(jbody);
811     return NULL;
812   }
813   jstr=json_string(s);
814   free(s); s=NULL;
815   if (jstr==NULL) {
816     json_decref(jbody);
817     return NULL;
818   }
819   json_object_set_new(jbody, "realm", jstr);
820
821   return jbody;
822 }
823
824 static TRP_REQ *tr_msg_decode_trp_req(TALLOC_CTX *mem_ctx, json_t *jreq)
825 {
826   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
827   TRP_REQ *req=NULL;
828   char *s=NULL;
829   TRP_RC rc=TRP_ERROR;
830
831   /* check message type and body type for agreement */
832   req=trp_req_new(tmp_ctx);
833   if (req==NULL) {
834     rc=TRP_NOMEM;
835     goto cleanup;
836   }
837
838   rc=tr_msg_get_json_string(jreq, "community", &s, tmp_ctx);
839   if (rc!=TRP_SUCCESS)
840     goto cleanup;
841   req->comm=tr_new_name(s);
842   talloc_free(s); s=NULL;
843
844   rc=tr_msg_get_json_string(jreq, "realm", &s, tmp_ctx);
845   if (rc!=TRP_SUCCESS)
846     goto cleanup;
847   req->realm=tr_new_name(s);
848   talloc_free(s); s=NULL;
849
850   rc=TRP_SUCCESS;
851   talloc_steal(mem_ctx, req);
852
853 cleanup:
854   talloc_free(tmp_ctx);
855   if (rc!=TRP_SUCCESS)
856     return NULL;
857   return req;
858 }
859
860 char *tr_msg_encode(TR_MSG *msg) 
861 {
862   json_t *jmsg;
863   json_t *jmsg_type;
864   char *encoded;
865
866   /* TBD -- add error handling */
867   jmsg = json_object();
868
869   switch (msg->msg_type) 
870     {
871     case TID_REQUEST:
872       jmsg_type = json_string("tid_request");
873       json_object_set_new(jmsg, "msg_type", jmsg_type);
874       json_object_set_new(jmsg, "msg_body", tr_msg_encode_tidreq(tr_msg_get_req(msg)));
875       break;
876
877     case TID_RESPONSE:
878       jmsg_type = json_string("tid_response");
879       json_object_set_new(jmsg, "msg_type", jmsg_type);
880       json_object_set_new(jmsg, "msg_body", tr_msg_encode_tidresp(tr_msg_get_resp(msg)));
881       break;
882
883     case TRP_UPDATE:
884       jmsg_type = json_string("trp_update");
885       json_object_set_new(jmsg, "msg_type", jmsg_type);
886       json_object_set_new(jmsg, "msg_body", tr_msg_encode_trp_upd(tr_msg_get_trp_upd(msg)));
887       break;
888
889     case TRP_REQUEST:
890       jmsg_type = json_string("trp_request");
891       json_object_set_new(jmsg, "msg_type", jmsg_type);
892       json_object_set_new(jmsg, "msg_body", tr_msg_encode_trp_req(tr_msg_get_trp_req(msg)));
893       break;
894
895     default:
896       json_decref(jmsg);
897       return NULL;
898     }
899
900   encoded=json_dumps(jmsg, 0);
901   json_decref(jmsg);
902   return encoded;
903 }
904
905 TR_MSG *tr_msg_decode(char *jbuf, size_t buflen)
906 {
907   TR_MSG *msg=NULL;
908   json_t *jmsg = NULL;
909   json_error_t rc;
910   json_t *jtype=NULL;
911   json_t *jbody=NULL;
912   const char *mtype = NULL;
913
914   if (NULL == (jmsg = json_loadb(jbuf, buflen, JSON_DISABLE_EOF_CHECK, &rc))) {
915     tr_debug("tr_msg_decode(): error loading object");
916     return NULL;
917   }
918
919   if (!(msg = malloc(sizeof(TR_MSG)))) {
920     tr_debug("tr_msg_decode(): Error allocating TR_MSG structure.");
921     json_decref(jmsg);
922     return NULL;
923   }
924  
925   memset(msg, 0, sizeof(TR_MSG));
926
927   if ((NULL == (jtype = json_object_get(jmsg, "msg_type"))) ||
928       (NULL == (jbody = json_object_get(jmsg, "msg_body")))) {
929     tr_debug("tr_msg_decode(): Error parsing message header.");
930     json_decref(jmsg);
931     tr_msg_free_decoded(msg);
932     return NULL;
933   }
934
935   mtype = json_string_value(jtype);
936
937   if (0 == strcmp(mtype, "tid_request")) {
938     msg->msg_type = TID_REQUEST;
939     tr_msg_set_req(msg, tr_msg_decode_tidreq(jbody));
940   }
941   else if (0 == strcmp(mtype, "tid_response")) {
942     msg->msg_type = TID_RESPONSE;
943     tr_msg_set_resp(msg, tr_msg_decode_tidresp(jbody));
944   }
945   else if (0 == strcmp(mtype, "trp_update")) {
946     msg->msg_type = TRP_UPDATE;
947     tr_msg_set_trp_upd(msg, tr_msg_decode_trp_upd(NULL, jbody)); /* null talloc context for now */
948   }
949   else if (0 == strcmp(mtype, "trp_request")) {
950     msg->msg_type = TRP_UPDATE;
951     tr_msg_set_trp_req(msg, tr_msg_decode_trp_req(NULL, jbody)); /* null talloc context for now */
952   }
953   else {
954     msg->msg_type = TR_UNKNOWN;
955     msg->msg_rep = NULL;
956   }
957   return msg;
958 }
959
960 void tr_msg_free_encoded(char *jmsg)
961 {
962   if (jmsg)
963     free (jmsg);
964 }
965
966 void tr_msg_free_decoded(TR_MSG *msg)
967 {
968   if (msg) {
969     switch (msg->msg_type) {
970     case TID_REQUEST:
971       tid_req_free(tr_msg_get_req(msg));
972       break;
973     case TID_RESPONSE:
974       tid_resp_free(tr_msg_get_resp(msg));
975       break;
976     case TRP_UPDATE:
977       trp_upd_free(tr_msg_get_trp_upd(msg));
978       break;
979     case TRP_REQUEST:
980       trp_req_free(tr_msg_get_trp_req(msg));
981     default:
982       break;
983     }
984     free (msg);
985   }
986 }
987
988