tsip_parser_header_Proxy_Authenticate.rl 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. ///*
  2. //* Copyright (C) 2010-2011 Mamadou Diop.
  3. //*
  4. //* Contact: Mamadou Diop <diopmamadou(at)doubango[dot]org>
  5. //*
  6. //* This file is part of Open Source Doubango Framework.
  7. //*
  8. //* DOUBANGO is free software: you can redistribute it and/or modify
  9. //* it under the terms of the GNU General Public License as published by
  10. //* the Free Software Foundation, either version 3 of the License, or
  11. //* (at your option) any later version.
  12. //*
  13. //* DOUBANGO is distributed in the hope that it will be useful,
  14. //* but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. //* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. //* GNU General Public License for more details.
  17. //*
  18. //* You should have received a copy of the GNU General Public License
  19. //* along with DOUBANGO.
  20. //*
  21. //*/
  22. //
  23. ///**@file tsip_header_Proxy_Authenticate.c
  24. // * @brief SIP Proxy-Authenticate header.
  25. // *
  26. // * @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
  27. // *
  28. //
  29. // */
  30. //#include "tinysip/headers/tsip_header_Proxy_Authenticate.h"
  31. //
  32. //#include "tinysip/parsers/tsip_parser_uri.h"
  33. //
  34. //#include "tsk_debug.h"
  35. //#include "tsk_memory.h"
  36. //#include "tsk_time.h"
  37. //
  38. //#include <string.h>
  39. //
  40. //
  41. ///***********************************
  42. //* Ragel state machine.
  43. //*/
  44. //%%{
  45. // machine tsip_machine_parser_header_Proxy_Authenticate;
  46. //
  47. // # Includes
  48. // include tsip_machine_utils "./ragel/tsip_machine_utils.rl";
  49. //
  50. // action tag
  51. // {
  52. // tag_start = p;
  53. // }
  54. //
  55. // action is_digest
  56. // {
  57. // #//FIXME: Only Digest is supported
  58. // hdr_Proxy_Authenticate->scheme = tsk_strdup("Digest");
  59. // }
  60. //
  61. // action parse_realm
  62. // {
  63. // TSK_PARSER_SET_STRING(hdr_Proxy_Authenticate->realm);
  64. // tsk_strunquote(&hdr_Proxy_Authenticate->realm);
  65. // }
  66. //
  67. // action parse_domain
  68. // {
  69. // TSK_PARSER_SET_STRING(hdr_Proxy_Authenticate->domain);
  70. // //tsk_strunquote(&hdr_Proxy_Authenticate->domain);
  71. // }
  72. //
  73. // action parse_nonce
  74. // {
  75. // TSK_PARSER_SET_STRING(hdr_Proxy_Authenticate->nonce);
  76. // tsk_strunquote(&hdr_Proxy_Authenticate->nonce);
  77. // }
  78. //
  79. // action parse_opaque
  80. // {
  81. // TSK_PARSER_SET_STRING(hdr_Proxy_Authenticate->opaque);
  82. // tsk_strunquote(&hdr_Proxy_Authenticate->opaque);
  83. // }
  84. //
  85. // action parse_stale
  86. // {
  87. // hdr_Proxy_Authenticate->stale = tsk_strniequals(tag_start, "true", 4);
  88. // }
  89. //
  90. // action parse_algorithm
  91. // {
  92. // TSK_PARSER_SET_STRING(hdr_Proxy_Authenticate->algorithm);
  93. // }
  94. //
  95. // action parse_qop
  96. // {
  97. // TSK_PARSER_SET_STRING(hdr_Proxy_Authenticate->qop);
  98. // //tsk_strunquote(&hdr_Proxy_Authenticate->qop);
  99. // }
  100. //
  101. // action parse_param
  102. // {
  103. // TSK_PARSER_ADD_PARAM(TSIP_HEADER_PARAMS(hdr_Proxy_Authenticate));
  104. // }
  105. //
  106. // action eob
  107. // {
  108. // }
  109. //
  110. // #FIXME: Only Digest (MD5, AKAv1-MD5 and AKAv2-MD5) is supported
  111. // other_challenge = (any+);
  112. // auth_param = generic_param>tag %parse_param;
  113. //
  114. // realm = "realm"i EQUAL quoted_string>tag %parse_realm;
  115. // domain = "domain"i EQUAL LDQUOT <: (any*)>tag %parse_domain :> RDQUOT;
  116. // nonce = "nonce"i EQUAL quoted_string>tag %parse_nonce;
  117. // opaque = "opaque"i EQUAL quoted_string>tag %parse_opaque;
  118. // stale = "stale"i EQUAL ( "true"i | "false"i )>tag %parse_stale;
  119. // algorithm = "algorithm"i EQUAL <:token>tag %parse_algorithm;
  120. // qop_options = "qop"i EQUAL LDQUOT <: (any*)>tag %parse_qop :> RDQUOT;
  121. //
  122. // digest_cln = (realm | domain | nonce | opaque | stale | algorithm | qop_options)@1 | auth_param@0;
  123. // challenge = ( "Digest"i LWS digest_cln ( COMMA digest_cln )* )>is_digest | other_challenge;
  124. // Proxy_Authenticate = "Proxy-Authenticate"i HCOLON challenge;
  125. //
  126. // # Entry point
  127. // main := Proxy_Authenticate :>CRLF @eob;
  128. //
  129. //}%%
  130. //
  131. //int tsip_header_Proxy_Authenticate_serialize(const tsip_header_t* header, tsk_buffer_t* output)
  132. //{
  133. // if(header)
  134. // {
  135. // const tsip_header_Proxy_Authenticate_t *Proxy_Authenticate = header;
  136. // if(Proxy_Authenticate && Proxy_Authenticate->scheme)
  137. // {
  138. // return tsk_buffer_append_2(output, "%s realm=\"%s\"%s%s%s%s%s%s%s%s%s%s%s%s,stale=%s%s%s",
  139. // Proxy_Authenticate->scheme,
  140. // Proxy_Authenticate->realm ? Proxy_Authenticate->realm : "",
  141. //
  142. // Proxy_Authenticate->domain ? ",domain=\"" : "",
  143. // Proxy_Authenticate->domain ? Proxy_Authenticate->domain : "",
  144. // Proxy_Authenticate->domain ? "\"" : "",
  145. //
  146. //
  147. // Proxy_Authenticate->qop ? ",qop=\"" : "",
  148. // Proxy_Authenticate->qop ? Proxy_Authenticate->qop : "",
  149. // Proxy_Authenticate->qop ? "\"" : "",
  150. //
  151. //
  152. // Proxy_Authenticate->nonce ? ",nonce=\"" : "",
  153. // Proxy_Authenticate->nonce ? Proxy_Authenticate->nonce : "",
  154. // Proxy_Authenticate->nonce ? "\"" : "",
  155. //
  156. // Proxy_Authenticate->opaque ? ",opaque=\"" : "",
  157. // Proxy_Authenticate->opaque ? Proxy_Authenticate->opaque : "",
  158. // Proxy_Authenticate->opaque ? "\"" : "",
  159. //
  160. // Proxy_Authenticate->stale ? "TRUE" : "FALSE",
  161. //
  162. // Proxy_Authenticate->algorithm ? ",algorithm=" : "",
  163. // Proxy_Authenticate->algorithm ? Proxy_Authenticate->algorithm : ""
  164. // );
  165. // }
  166. // }
  167. // return -1;
  168. //}
  169. //
  170. //tsip_header_Proxy_Authenticate_t *tsip_header_Proxy_Authenticate_parse(const char *data, tsk_size_t size)
  171. //{
  172. // int cs = 0;
  173. // const char *p = data;
  174. // const char *pe = p + size;
  175. // const char *eof = pe;
  176. // tsip_header_Proxy_Authenticate_t *hdr_Proxy_Authenticate = TSIP_HEADER_PROXY_AUTHENTICATE_CREATE();
  177. //
  178. // const char *tag_start = tsk_null;
  179. //
  180. // %%write data;
  181. // %%write init;
  182. // %%write exec;
  183. //
  184. // if( cs < %%{ write first_final; }%% )
  185. // {
  186. // TSK_OBJECT_SAFE_FREE(hdr_Proxy_Authenticate);
  187. // }
  188. //
  189. // return hdr_Proxy_Authenticate;
  190. //}
  191. //
  192. //
  193. //
  194. //
  195. //
  196. //
  197. //
  198. ////========================================================
  199. //// Proxy_Authenticate header object definition
  200. ////
  201. //
  202. //static tsk_object_t* tsip_header_Proxy_Authenticate_ctor(tsk_object_t *self, va_list * app)
  203. //{
  204. // tsip_header_Proxy_Authenticate_t *Proxy_Authenticate = self;
  205. // if(Proxy_Authenticate)
  206. // {
  207. // TSIP_HEADER(Proxy_Authenticate)->type = tsip_htype_Proxy_Authenticate;
  208. // TSIP_HEADER(Proxy_Authenticate)->serialize = tsip_header_Proxy_Authenticate_serialize;
  209. // }
  210. // else
  211. // {
  212. // TSK_DEBUG_ERROR("Failed to create new Proxy_Authenticate header.");
  213. // }
  214. // return self;
  215. //}
  216. //
  217. //static tsk_object_t* tsip_header_Proxy_Authenticate_dtor(tsk_object_t *self)
  218. //{
  219. // tsip_header_Proxy_Authenticate_t *Proxy_Authenticate = self;
  220. // if(Proxy_Authenticate)
  221. // {
  222. // TSK_FREE(Proxy_Authenticate->scheme);
  223. // TSK_FREE(Proxy_Authenticate->realm);
  224. // TSK_FREE(Proxy_Authenticate->domain);
  225. // TSK_FREE(Proxy_Authenticate->nonce);
  226. // TSK_FREE(Proxy_Authenticate->opaque);
  227. // TSK_FREE(Proxy_Authenticate->algorithm);
  228. // TSK_FREE(Proxy_Authenticate->qop);
  229. //
  230. // TSK_OBJECT_SAFE_FREE(TSIP_HEADER_PARAMS(Proxy_Authenticate));
  231. // }
  232. // else TSK_DEBUG_ERROR("Null Proxy_Authenticate header.");
  233. //
  234. // return self;
  235. //}
  236. //
  237. //static const tsk_object_def_t tsip_header_Proxy_Authenticate_def_s =
  238. //{
  239. // sizeof(tsip_header_Proxy_Authenticate_t),
  240. // tsip_header_Proxy_Authenticate_ctor,
  241. // tsip_header_Proxy_Authenticate_dtor,
  242. // 0
  243. //};
  244. //const void *tsip_header_Proxy_Authenticate_def_t = &tsip_header_Proxy_Authenticate_def_s;