OSDN Git Service

* Fixed Bug.
[modchxj/mod_chxj.git] / src / mod_chxj.c
1 /*
2  * Copyright (C) 2005-2009 Atsushi Konno All rights reserved.
3  * Copyright (C) 2005 QSDN,Inc. All rights reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 #include <unistd.h>
18 #include <string.h>
19 #include <limits.h>
20 #include <errno.h>
21
22 #include "httpd.h"
23 #include "http_config.h"
24 #include "http_core.h"
25 #include "http_protocol.h"
26 #include "http_log.h"
27 #include "ap_config.h"
28 #include "apr_strings.h"
29 #include "util_filter.h"
30 #include "apr_buckets.h"
31 #include "apr_lib.h"
32 #include "apr_tables.h"
33 #include "apr_dso.h"
34 #include "apr_general.h"
35 #include "apr_pools.h"
36
37 #include "mod_chxj.h"
38 #include "chxj_encoding.h"
39 #include "qs_ignore_sp.h"
40 #include "qs_log.h"
41 #include "qs_malloc.h"
42 #include "qs_parse_attr.h"
43 #include "qs_parse_file.h"
44 #include "qs_parse_string.h"
45 #include "qs_parse_tag.h"
46 #include "chxj_load_device_data.h"
47 #include "chxj_load_emoji_data.h"
48 #include "chxj_specified_device.h"
49 #include "chxj_tag_util.h"
50 #include "chxj_xhtml_mobile_1_0.h"
51 #include "chxj_hdml.h"
52 #include "chxj_chtml10.h"
53 #include "chxj_chtml20.h"
54 #include "chxj_chtml30.h"
55 #include "chxj_chtml40.h"
56 #include "chxj_chtml50.h"
57 #include "chxj_jhtml.h"
58 #include "chxj_jxhtml.h"
59 #include "chxj_img_conv_format.h"
60 #include "chxj_qr_code.h"
61 #include "chxj_encoding.h"
62 #include "chxj_apply_convrule.h"
63 #include "chxj_cookie.h"
64 #include "chxj_url_encode.h"
65 #include "chxj_str_util.h"
66 #if defined(USE_MYSQL_COOKIE)
67 #  include "chxj_mysql.h"
68 #endif
69 #include "chxj_serf.h"
70 #include "chxj_add_device_env.h"
71 #include "chxj_conv_z2h.h"
72 #include "chxj_header_inf.h"
73 #include "chxj_jreserved_tag.h"
74
75
76 #define CHXJ_VERSION_PREFIX PACKAGE_NAME "/"
77 #define CHXJ_VERSION        PACKAGE_VERSION
78 #define CHXJ_POST_MAX       (0x1000000)
79
80 converter_t convert_routine[] = {
81   {
82     /* CHXJ_SPEC_UNKNOWN          */
83     .converter            = NULL,
84     .encoder              = NULL,
85     .emoji_only_converter = NULL,
86   },
87   {
88     /* CHXJ_SPEC_Chtml_1_0        */
89     .converter            = chxj_convert_chtml10,
90     .encoder              = chxj_encoding,
91     .emoji_only_converter = chxj_chtml10_emoji_only_converter,
92   },
93   {
94     /* CHXJ_SPEC_Chtml_2_0        */
95     .converter            = chxj_convert_chtml20,
96     .encoder              = chxj_encoding,
97     .emoji_only_converter = chxj_chtml20_emoji_only_converter,
98   },
99   {
100     /* CHXJ_SPEC_Chtml_3_0        */
101     .converter            = chxj_convert_chtml30,
102     .encoder              = chxj_encoding,
103     .emoji_only_converter = chxj_chtml30_emoji_only_converter,
104   },
105   {
106     /* CHXJ_SPEC_Chtml_4_0        */
107     .converter            = chxj_convert_chtml40,
108     .encoder              = chxj_encoding,
109     .emoji_only_converter = chxj_chtml40_emoji_only_converter,
110   },
111   {
112     /* CHXJ_SPEC_Chtml_5_0        */
113     .converter            = chxj_convert_chtml50,
114     .encoder              = chxj_encoding,
115     .emoji_only_converter = chxj_chtml50_emoji_only_converter,
116   },
117   {
118     /* CHXJ_SPEC_Chtml_6_0        */
119     .converter            = chxj_convert_chtml50,
120     .encoder              = chxj_encoding,
121     .emoji_only_converter = chxj_chtml50_emoji_only_converter,
122   },
123   {
124     /* CHXJ_SPEC_Chtml_7_0        */
125     .converter            = chxj_convert_chtml50,
126     .encoder              = chxj_encoding,
127     .emoji_only_converter = chxj_chtml50_emoji_only_converter,
128   },
129   {
130     /* CHXJ_SPEC_XHtml_Mobile_1_0 */
131     .converter            = chxj_convert_xhtml_mobile_1_0,
132     .encoder              = chxj_encoding,
133     .emoji_only_converter = chxj_xhtml_emoji_only_converter,
134   },
135   {
136     /* CHXJ_SPEC_Hdml             */
137     .converter            = chxj_convert_hdml,
138     .encoder              = chxj_encoding,
139     .emoji_only_converter = NULL,
140   },
141   {
142     /* CHXJ_SPEC_Jhtml            */
143     .converter            = chxj_convert_jhtml,
144     .encoder              = chxj_encoding,
145     .emoji_only_converter = chxj_jhtml_emoji_only_converter,
146   },
147   {
148     /* CHXJ_SPEC_Jxhtml            */
149     .converter            = chxj_convert_jxhtml,
150     .encoder              = chxj_encoding,
151     .emoji_only_converter = chxj_jxhtml_emoji_only_converter,
152   },
153   {
154     /* CHXJ_SPEC_HTML             */
155     .converter = NULL,
156     .encoder  = NULL,
157     .emoji_only_converter = NULL,
158   },
159 };
160
161 static int chxj_convert_input_header(request_rec *r,chxjconvrule_entry *entryp, device_table *spec);
162 static void s_convert_guid_parameter_to_header(request_rec *r, const char *param, device_table *spec);
163 static void s_add_cookie_id_if_has_location_header(request_rec *r, cookie_t *cookie);
164 static void s_clear_cookie_header(request_rec *r, device_table *spec);
165 static void s_add_no_cache_headers(request_rec *r, chxjconvrule_entry  *entryp);
166
167 /**
168  * Only when User-Agent is specified, the User-Agent header is camouflaged. 
169  *
170  * @param r   [i]
171  */
172 static apr_status_t 
173 chxj_headers_fixup(request_rec *r)
174 {
175   mod_chxj_config*    dconf; 
176   chxjconvrule_entry* entryp;
177   char*               user_agent;
178   device_table*       spec;
179   char                *contentType;
180   char                *contentLength;
181
182   DBG(r, "REQ[%X] start chxj_headers_fixup()", (unsigned int)(apr_size_t)r);
183   if (r->main) {
184     DBG(r, "REQ[%X] detect internal redirect.", (unsigned int)(apr_size_t)r);
185     DBG(r, "REQ[%X] end chxj_headers_fixup()",  (unsigned int)(apr_size_t)r);
186     return DECLINED;
187   }
188
189   dconf = chxj_get_module_config(r->per_dir_config, &chxj_module);
190
191   user_agent = (char*)apr_table_get(r->headers_in, HTTP_USER_AGENT);
192   spec = chxj_specified_device(r, user_agent);
193
194   contentType = (char *)apr_table_get(r->headers_in, "Content-Type");
195   if (contentType
196       && strncasecmp("multipart/form-data", contentType, 19) == 0) {
197     DBG(r, "REQ[%X] detect multipart/form-data ==> no target", (unsigned int)(apr_size_t)r);
198     DBG(r, "REQ[%X] end chxj_headers_fixup()", (unsigned int)(apr_size_t)r);
199     return DECLINED;
200   }
201   if (r->method_number == M_POST) {
202     if (!apr_table_get(r->headers_in, "X-Chxj-Forward")) {
203       s_clear_cookie_header(r, spec);
204     }
205   }
206   else {
207     s_clear_cookie_header(r, spec);
208   }
209
210   switch(spec->html_spec_type) {
211   case CHXJ_SPEC_Chtml_1_0:
212   case CHXJ_SPEC_Chtml_2_0:
213   case CHXJ_SPEC_Chtml_3_0:
214   case CHXJ_SPEC_Chtml_4_0:
215   case CHXJ_SPEC_Chtml_5_0:
216   case CHXJ_SPEC_Chtml_6_0:
217   case CHXJ_SPEC_Chtml_7_0:
218   case CHXJ_SPEC_XHtml_Mobile_1_0:
219   case CHXJ_SPEC_Hdml:
220   case CHXJ_SPEC_Jhtml:
221   case CHXJ_SPEC_Jxhtml:
222     entryp = chxj_apply_convrule(r, dconf->convrules);
223     if (! entryp) {
224       DBG(r, "REQ[%X] end chxj_headers_fixup() (no pattern)", (unsigned int)(apr_size_t)r);
225       return DECLINED;
226     }
227     if (!(entryp->action & CONVRULE_ENGINE_ON_BIT)) {
228       DBG(r, "REQ[%X] end chxj_headers_fixup() (engine off)", (unsigned int)(apr_size_t)r);
229       return DECLINED;
230     }
231     if (entryp->action & CONVRULE_EMOJI_ONLY_BIT) {
232       DBG(r, "REQ[%X] end chxj_headers_fixup() (emoji only)", (unsigned int)(apr_size_t)r);
233       return DECLINED;
234     } 
235   
236     apr_table_setn(r->headers_in, 
237                    CHXJ_HTTP_USER_AGENT, 
238                    user_agent);
239   
240     if (entryp->user_agent)
241       apr_table_setn(r->headers_in, 
242                      HTTP_USER_AGENT, 
243                      entryp->user_agent);
244
245     chxj_convert_input_header(r,entryp, spec);
246
247     break;
248   
249   default:
250     DBG(r, "REQ[%X] end chxj_headers_fixup() (not mobile)", (unsigned int)(apr_size_t)r);
251     return DECLINED;
252
253   }
254
255
256   if (r->method_number == M_POST) {
257     if (! apr_table_get(r->headers_in, "X-Chxj-Forward")) {
258         DBG(r, "REQ[%X] set Input handler old:[%s] proxyreq:[%d] uri:[%s] filename:[%s]", (unsigned int)(apr_size_t)r, r->handler, r->proxyreq, r->uri, r->filename);
259         r->proxyreq = PROXYREQ_NONE;
260         r->handler = apr_psprintf(r->pool, "chxj-input-handler");
261     }
262     else {
263       char *client_ip = (char *)apr_table_get(r->headers_in, CHXJ_HEADER_ORIG_CLIENT_IP);
264       if (client_ip) {
265         apr_sockaddr_t *address = NULL;
266         apr_status_t rv = apr_sockaddr_info_get(&address, ap_get_server_name(r), APR_UNSPEC, ap_get_server_port(r), 0, r->pool);
267         if (rv != APR_SUCCESS) {
268           char buf[256];
269           ERR(r, "REQ[%X] %s:%d apr_sockaddr_info_get() failed: rv:[%d|%s]", (unsigned int)(apr_size_t)r, APLOG_MARK, rv, apr_strerror(rv, buf, 256));
270           DBG(r, "REQ[%X] end chxj_headers_fixup()", (unsigned int)(apr_size_t)r);
271           return DECLINED;
272         }
273         char *addr;
274         if (dconf->forward_server_ip) {
275           addr = dconf->forward_server_ip;
276         }
277         else {
278           apr_sockaddr_ip_get(&addr, address);
279         }
280         DBG(r, "REQ[%X] Client IP:[%s] vs Orig Client IP:[%s] vs Server IP:[%s]", (unsigned int)(apr_size_t)r, r->connection->remote_ip, client_ip, addr);
281         if (strcmp(addr, r->connection->remote_ip) == 0) {
282           r->connection->remote_ip = apr_pstrdup(r->connection->pool, client_ip);
283         }
284         if (! apr_table_get(r->headers_in, "Content-Length")) {
285           contentLength = (char *)apr_table_get(r->headers_in, "X-Chxj-Content-Length");
286           if (contentLength) {
287             apr_table_set(r->headers_in, "Content-Length", contentLength);
288           }
289         }
290       }
291     }
292   }
293
294   chxj_add_device_env(r, spec);
295
296   DBG(r, "REQ[%X] end chxj_headers_fixup()", (unsigned int)(apr_size_t)r);
297
298   return DECLINED;
299 }
300
301
302 static void
303 s_clear_cookie_header(request_rec *r, device_table *spec)
304 {
305   switch(spec->html_spec_type) {
306   case CHXJ_SPEC_Chtml_1_0:
307   case CHXJ_SPEC_Chtml_2_0:
308   case CHXJ_SPEC_Chtml_3_0:
309   case CHXJ_SPEC_Chtml_4_0:
310   case CHXJ_SPEC_Chtml_5_0:
311   case CHXJ_SPEC_Chtml_6_0:
312   case CHXJ_SPEC_Chtml_7_0:
313   case CHXJ_SPEC_XHtml_Mobile_1_0:
314   case CHXJ_SPEC_Jhtml:
315     apr_table_unset(r->headers_in, "Cookie");
316     break;
317   default:
318     break;
319   }
320 }
321
322
323 /**
324  * It converts it from CHTML into XXML corresponding to each model. 
325  *
326  * @param r   [i]
327  * @param src [i]   It is former HTML character string. 
328  * @param len [i/o] It is length of former HTML character string. 
329  */
330 static char * 
331 chxj_convert(request_rec *r, const char **src, apr_size_t *len, device_table *spec, const char *ua, cookie_t **cookiep)
332 {
333   char                *user_agent;
334   char                *dst;
335   char                *tmp;
336   cookie_t            *cookie;
337   mod_chxj_config     *dconf; 
338   chxjconvrule_entry  *entryp;
339
340   DBG(r,"REQ[%X] start of chxj_convert() input:[%.*s]", (unsigned int)(apr_size_t)r, (int)*len, *src);
341   dst  = apr_pstrcat(r->pool, (char *)*src, NULL);
342
343   dconf = chxj_get_module_config(r->per_dir_config, &chxj_module);
344
345
346   entryp = chxj_apply_convrule(r, dconf->convrules);
347
348   if (!entryp || !(entryp->action & CONVRULE_ENGINE_ON_BIT)) {
349     DBG(r,"REQ[%X] end of chxj_convert()", (unsigned int)(apr_size_t)r);
350     return (char *)*src;
351   }
352
353
354   /*------------------------------------------------------------------------*/
355   /* get UserAgent from http header                                         */
356   /*------------------------------------------------------------------------*/
357   if (entryp->user_agent)
358     user_agent = (char *)apr_table_get(r->headers_in, CHXJ_HTTP_USER_AGENT);
359   else
360     user_agent = (char *)apr_table_get(r->headers_in, HTTP_USER_AGENT);
361
362   DBG(r,"REQ[%X] User-Agent:[%s]", (unsigned int)(apr_size_t)r, user_agent);
363   DBG(r,"REQ[%X] content type is %s", (unsigned int)(apr_size_t)r, r->content_type);
364
365
366   if (  ! STRNCASEEQ('t','T', "text/html", r->content_type, sizeof("text/html")-1)
367     &&  ! STRNCASEEQ('a','A', "application/xhtml+xml", r->content_type, sizeof("application/xhtml+xml")-1)) {
368     DBG(r,"REQ[%X] no convert. content type is %s", (unsigned int)(apr_size_t)r, r->content_type);
369     DBG(r,"REQ[%X] end of chxj_convert()", (unsigned int)(apr_size_t)r);
370     return (char *)*src;
371   }
372
373   if (ua && user_agent && strcasecmp(user_agent, ua) != 0) {
374     /* again */
375     spec = chxj_specified_device(r, user_agent);
376   }
377
378   /*
379    * save cookie.
380    */
381   cookie = NULL;
382   if (entryp->action & CONVRULE_COOKIE_ON_BIT 
383       && !(entryp->action & CONVRULE_EMOJI_ONLY_BIT)
384       && !(entryp->action & CONVRULE_ENVINFO_ONLY_BIT)) {
385     switch(spec->html_spec_type) {
386     case CHXJ_SPEC_Chtml_1_0:
387     case CHXJ_SPEC_Chtml_2_0:
388     case CHXJ_SPEC_Chtml_3_0:
389     case CHXJ_SPEC_Chtml_4_0:
390     case CHXJ_SPEC_Chtml_5_0:
391     case CHXJ_SPEC_Chtml_6_0:
392     case CHXJ_SPEC_Chtml_7_0:
393     case CHXJ_SPEC_XHtml_Mobile_1_0:
394     case CHXJ_SPEC_Jhtml:
395       cookie = chxj_save_cookie(r);
396       break;
397     default:
398       break;
399     }
400   }
401
402   if (!r->header_only) {
403
404     tmp = NULL;
405     if (convert_routine[spec->html_spec_type].encoder)
406       tmp = convert_routine[spec->html_spec_type].encoder(r, 
407                                                           *src, 
408                                                           (apr_size_t *)len);
409
410     if (entryp->action & CONVRULE_EMOJI_ONLY_BIT) {
411       if (tmp) {
412         tmp = chxj_node_convert_chxjif_only(r, spec, (const char*)tmp, (apr_size_t *)len);
413       }
414       else {
415         tmp = chxj_node_convert_chxjif_only(r, spec, (const char *)*src, (apr_size_t *)len);
416       }
417       if (convert_routine[spec->html_spec_type].emoji_only_converter) {
418         dst = convert_routine[spec->html_spec_type].emoji_only_converter(r,spec, tmp,*len);
419         if (dst != NULL) {
420           *len = strlen(dst);
421         }
422         else {
423           dst = apr_palloc(r->pool, 1);
424           *dst = 0;
425           *len = 0;
426         }
427       }
428       DBG(r, "REQ[%X] end of chxj_convert()(emoji only)", (unsigned int)(apr_size_t)r);
429     }
430
431     if (   !(entryp->action & CONVRULE_EMOJI_ONLY_BIT) 
432         && !(entryp->action & CONVRULE_ENVINFO_ONLY_BIT)) {
433       if (convert_routine[spec->html_spec_type].converter) {
434         if (tmp)
435           dst = convert_routine[spec->html_spec_type].converter(r, 
436                                                                 spec, 
437                                                                 tmp, 
438                                                                 *len, 
439                                                                 len, 
440                                                                 entryp, 
441                                                                 cookie);
442         else
443           dst = convert_routine[spec->html_spec_type].converter(r,
444                                                                 spec, 
445                                                                 *src, 
446                                                                 *len, 
447                                                                 len, 
448                                                                 entryp, 
449                                                                 cookie);
450       }
451       if (dst && *len) {
452         dst = chxj_conv_z2h(r, dst, len, entryp);
453       }
454     }
455   }
456   ap_set_content_length(r, *len);
457
458   if (*len == 0) {
459     dst = apr_psprintf(r->pool, "\n");
460     *len = 1;
461   }
462   dst[*len] = 0;
463   if (cookie) {
464     *cookiep = cookie;
465   }
466
467
468   DBG(r, "REQ[%X] end of chxj_convert()", (unsigned int)(apr_size_t)r);
469
470   return dst;
471 }
472
473
474 /**
475  * convert GUID parameter.
476  *
477  */
478 static void
479 s_convert_guid_parameter_to_header(request_rec *r, const char *param, device_table *spec)
480 {
481   if (strcasecmp(param, "guid") == 0) {
482     switch(spec->html_spec_type) {
483     case CHXJ_SPEC_XHtml_Mobile_1_0:
484       do {
485         char *x_up_subno = (char *)apr_table_get(r->headers_in, "x-up-subno");
486         if (x_up_subno) {
487           apr_table_setn(r->headers_in, "X-DCMGUID", x_up_subno);
488         }
489       } while(0);
490       break;
491     case CHXJ_SPEC_Jhtml:
492     case CHXJ_SPEC_Jxhtml:
493       do {
494         char *x_jphone_uid = (char *)apr_table_get(r->headers_in, "x-jphone-uid");
495         if (x_jphone_uid) {
496           apr_table_setn(r->headers_in, "X-DCMGUID", x_jphone_uid);
497         }
498       } while(0);
499       break;
500     default:
501       break;
502     }
503   }
504 }
505
506 /**
507  * It converts it from HEADER.
508  *
509  * @param r   [i]
510  */
511 static int
512 chxj_convert_input_header(request_rec *r,chxjconvrule_entry *entryp, device_table *spec) 
513 {
514
515   char       *buff;
516   char       *buff_pre;
517   apr_size_t urilen;
518   char       *result;
519   char       *pair;
520   char       *name;
521   char       *value;
522   char       *pstate;
523   char       *vstate;
524   cookie_t   *cookie = NULL;
525   int        no_update_flag = 0;
526
527   DBG(r, "REQ[%X] start chxj_convert_input_header()", (unsigned int)(apr_size_t)r);
528
529   if (! r->args) {
530     DBG(r, "REQ[%X] r->args=[null]", (unsigned int)(apr_size_t)r);
531     DBG(r, "REQ[%X] end   chxj_convert_input_header()", (unsigned int)(apr_size_t)r);
532     return 0;
533   }
534   urilen = strlen(r->args);
535
536   result = qs_alloc_zero_byte_string(r->pool);
537
538   buff_pre = apr_pstrdup(r->pool, r->args);
539
540   for (;;) {
541     char *pair_sv;
542
543     pair = apr_strtok(buff_pre, "&", &pstate);
544     if (pair == NULL)
545       break;
546
547     buff_pre = NULL;
548
549     pair_sv = apr_pstrdup(r->pool, pair);
550
551     name  = apr_strtok(pair, "=", &vstate);
552     value = apr_strtok(NULL, "=", &vstate);
553     if (! name) continue;
554     if (strcasecmp(name, CHXJ_COOKIE_NOUPDATE_PARAM) == 0 || strcasecmp(name, chxj_url_encode(r->pool, CHXJ_COOKIE_NOUPDATE_PARAM)) == 0) {
555       DBG(r, "REQ[%X] found cookie no update parameter", (unsigned int)(apr_size_t)r);
556       no_update_flag++;
557     }
558   }
559
560   buff = apr_pstrdup(r->pool, r->args);
561   DBG(r, "REQ[%X] r->args=[%s]", (unsigned int)(apr_size_t)r, buff);
562
563   /* _chxj_dmy */
564   /* _chxj_c_ */
565   /* _chxj_r_ */
566   /* _chxj_s_ */
567   for (;;) {
568     char *pair_sv;
569
570     pair = apr_strtok(buff, "&", &pstate);
571     if (pair == NULL)
572       break;
573
574     buff = NULL;
575
576     pair_sv = apr_pstrdup(r->pool, pair);
577
578     name  = apr_strtok(pair, "=", &vstate);
579     value = apr_strtok(NULL, "=", &vstate);
580     if (! name) continue;
581     name = chxj_safe_to_jreserved_tag(r, name);
582
583     if (strncasecmp(name, "_chxj", 5) != 0 && strncasecmp(name, "%5Fchxj", sizeof("%5Fchxj")-1) != 0) {
584       if (strlen(result) != 0) 
585         result = apr_pstrcat(r->pool, result, "&", NULL);
586
587       if (strcasecmp(entryp->encoding, "NONE") != 0) {
588         apr_size_t dlen;
589         char *dvalue;
590         char *dname;
591
592         if (value && *value != 0) {
593           value = chxj_url_decode(r->pool, value);
594           dlen   = strlen(value);
595           DBG(r, "************ before encoding[%s]", value);
596   
597           dvalue = chxj_rencoding(r, value, &dlen);
598           dvalue = chxj_url_encode(r->pool, dvalue);
599   
600           DBG(r, "************ after encoding[%s]", dvalue);
601         }
602         else {
603           dvalue = "";
604         }
605
606         if (name && *name != 0) {
607           name = chxj_url_decode(r->pool, name);
608           dlen = strlen(name);
609           dname = chxj_rencoding(r, name, &dlen);
610           dname = chxj_url_encode(r->pool, dname);
611         }
612         else {
613           dname = "";
614         }
615         s_convert_guid_parameter_to_header(r, dname, spec);
616         result = apr_pstrcat(r->pool, result, dname, "=", dvalue, NULL);
617       }
618       else {
619         if (strcmp(name, pair_sv) != 0)
620           result = apr_pstrcat(r->pool, result, name, "=", value, NULL);
621         else
622           result = apr_pstrcat(r->pool, result, name, NULL);
623       }
624     }
625     else
626     if ( (strncasecmp(name, "_chxj_c_", 8) == 0 || strncasecmp(name, "%5Fchxj%5Fc%5F", sizeof("%5Fchxj%5Fc%5F")-1) == 0)
627       || (strncasecmp(name, "_chxj_r_", 8) == 0 || strncasecmp(name, "%5Fchxj%5Fr%5F", sizeof("%5Fchxj%5Fr%5F")-1) == 0)
628       || (strncasecmp(name, "_chxj_s_", 8) == 0 || strncasecmp(name, "%5Fchxj%5Fs%5F", sizeof("%5Fchxj%5Fs%5F")-1) == 0)) {
629       if (value == NULL)
630         continue;
631
632       if (strlen(value) == 0)
633         continue;
634
635       if (strlen(result) != 0)
636         result = apr_pstrcat(r->pool, result, "&", NULL);
637
638       result = apr_pstrcat(r->pool, result, &name[8], "=", value, NULL);
639     }
640     else
641     if (strcasecmp(name, CHXJ_COOKIE_PARAM) == 0 || strcasecmp(name, "%5Fchxj%5Fcc") == 0) {
642       if (! cookie) {
643         apr_table_unset(r->headers_in, "Cookie");
644         DBG(r, "REQ[%X] found cookie parameter[%s]",    (unsigned int)(apr_size_t)r, value);
645         DBG(r, "REQ[%X] call start chxj_load_cookie()", (unsigned int)(apr_size_t)r);
646         cookie_lock_t *lock = chxj_cookie_lock(r);
647         cookie = chxj_load_cookie(r, value);
648         DBG(r, "REQ[%X] call end   chxj_load_cookie()", (unsigned int)(apr_size_t)r);
649         if (! no_update_flag && cookie) {
650           cookie = chxj_update_cookie(r, cookie);
651         }
652         chxj_cookie_unlock(r, lock);
653       }
654       if (cookie && cookie->cookie_id) {
655         if (strlen(result) != 0)
656           result = apr_pstrcat(r->pool, result, "&", NULL);
657         result = apr_pstrcat(r->pool, result, name, "=", cookie->cookie_id, NULL);
658       }
659     }
660     else
661     if (strcasecmp(name, CHXJ_COOKIE_NOUPDATE_PARAM) == 0) {
662       if (strlen(result) != 0)
663         result = apr_pstrcat(r->pool, result, "&", NULL);
664       result = apr_pstrcat(r->pool, result, name, "=", value, NULL);
665     }
666   }
667   apr_table_setn(r->headers_in, "X-Chxj-Cookie-No-Update", "true");
668   if (! no_update_flag) {
669     result = apr_pstrcat(r->pool, result, "&_chxj_nc=true", NULL);
670   }
671   r->args = result;
672
673   DBG(r, "REQ[%X] result r->args=[%s]",               (unsigned int)(apr_size_t)r, r->args);
674   DBG(r, "REQ[%X] end   chxj_convert_input_header()", (unsigned int)(apr_size_t)r);
675   return 0;
676 }
677
678
679 /**
680  * It converts it from POSTDATA .
681  *
682  * @param r   [i]
683  * @param src [i]   It is POSTDATA character string.
684  * @param len [i/o] It is length of former HTML character string.
685  */
686 static char *
687 chxj_input_convert(
688   request_rec         *r, 
689   const char          **src, 
690   apr_size_t          *len, 
691   chxjconvrule_entry  *entryp,
692   device_table        *spec)
693 {
694   char     *pair;
695   char     *name;
696   char     *value;
697   char     *pstate;
698   char     *vstate;
699   char     *s;
700   char     *result;
701   cookie_t *cookie = NULL;
702   char     *buff_pre;
703   int      no_update_flag = 0;
704   apr_size_t ii;
705   apr_size_t ilen = 0;
706   apr_pool_t *pool;
707
708   DBG(r, "REQ[%X] start of chxj_input_convert()", (unsigned int)(apr_size_t)r);
709
710   if (! *src) {
711     DBG(r, "REQ[%X] end of chxj_input_convert() (input is null)", (unsigned int)(apr_size_t)r);
712     return apr_pstrdup(r->pool, "");
713   }
714
715   apr_pool_create(&pool, r->pool);
716
717   s        = apr_pstrdup(pool, *src);
718   ilen     = strlen(s);
719   buff_pre = apr_pstrdup(pool, *src);
720
721   result   = qs_alloc_zero_byte_string(pool);
722
723   DBG(r, "REQ[%X] +-------------------------------------------------------------------+", (unsigned int)(apr_size_t)r);
724   DBG(r, "REQ[%X] | BEFORE input convert source                                       |", (unsigned int)(apr_size_t)r);
725   DBG(r, "REQ[%X] +-------------------------------------------------------------------+", (unsigned int)(apr_size_t)r);
726   for (ii=0; ii<ilen-64; ii+=64) {
727     DBG(r, "REQ[%X] | [%-*.*s] |", (unsigned int)(apr_size_t)r, 64, 64, &s[ii]);
728     if (ilen < 64) {
729       break;
730     }
731   }
732   if (ilen >= 64 && ((ilen-64) % 64 != 0)) {
733     DBG(r, "REQ[%X] | [%-*.*s] |", (unsigned int)(apr_size_t)r, 64, 64, &s[ii]);
734   }
735   DBG(r, "REQ[%X] +--------------------------------------------------------------------+", (unsigned int)(apr_size_t)r);
736
737   for (;;) {
738     char *pair_sv;
739
740     pair = apr_strtok(buff_pre, "&", &pstate);
741     if (pair == NULL)
742       break;
743
744     buff_pre = NULL;
745
746     pair_sv = apr_pstrdup(pool, pair);
747
748     name  = apr_strtok(pair, "=", &vstate);
749     value = apr_strtok(NULL, "=", &vstate);
750     if (! name) continue;
751     if (strcasecmp(name, CHXJ_COOKIE_NOUPDATE_PARAM) == 0 || strcasecmp(name, chxj_url_encode(r->pool, CHXJ_COOKIE_NOUPDATE_PARAM)) == 0) {
752       DBG(r, "REQ[%X] found cookie no update parameter", (unsigned int)(apr_size_t)r);
753       no_update_flag++;
754     }
755   }
756
757   /* _chxj_dmy */
758   /* _chxj_c_ */
759   /* _chxj_r_ */
760   /* _chxj_s_ */
761   for (;;) {
762     pair = apr_strtok(s, "&", &pstate);
763     if (pair == NULL)
764       break;
765     s = NULL;
766
767     name  = apr_strtok(pair, "=", &vstate);
768     value = apr_strtok(NULL, "=", &vstate);
769     if (! name) continue;
770     name  = chxj_safe_to_jreserved_tag(r, name);
771
772     if (strncasecmp(name, "_chxj", 5) != 0 && strncasecmp(name, "%5Fchxj", sizeof("%5Fchxj")-1) != 0) {
773       if (strlen(result) != 0) 
774         result = apr_pstrcat(pool, result, "&", NULL);
775
776       if (strcasecmp(entryp->encoding, "NONE") != 0) {
777         apr_size_t dlen;
778         char *dvalue;
779         char *dname;
780
781         if (value && *value != 0) {
782           value = chxj_url_decode(pool, value);
783           dlen   = strlen(value);
784           dvalue = chxj_rencoding(r, value, &dlen);
785           dvalue = chxj_url_encode(pool, dvalue);
786         }
787         else {
788           dvalue = "";
789         }
790
791         if (name && *name != 0) {
792           name = chxj_url_decode(pool, name);
793           dlen = strlen(name);
794           dname = chxj_rencoding(r, name, &dlen);
795           dname = chxj_url_encode(pool, dname);
796         }
797         else {
798           dname = "";
799         }
800
801
802         result = apr_pstrcat(pool, result, dname, "=", dvalue, NULL);
803       }
804       else {
805         result = apr_pstrcat(pool, result, name, "=", value, NULL);
806       }
807     }
808     else
809     if ( (strncasecmp(name, "_chxj_c_", 8) == 0 || strncasecmp(name, "%5Fchxj%5Fc%5F", sizeof("%5Fchxj%5Fc%5F")-1) == 0)
810       || (strncasecmp(name, "_chxj_r_", 8) == 0 || strncasecmp(name, "%5Fchxj%5Fr%5F", sizeof("%5Fchxj%5Fr%5F")-1) == 0)
811       || (strncasecmp(name, "_chxj_s_", 8) == 0 || strncasecmp(name, "%5Fchxj%5Fs%5F", sizeof("%5Fchxj%5Fs%5F")-1) == 0)) {
812       if (value == NULL)
813         continue;
814
815       if (strlen(value) == 0)
816         continue;
817
818       if (strlen(result) != 0)
819         result = apr_pstrcat(pool, result, "&", NULL);
820
821       if (strcasecmp(entryp->encoding, "NONE") != 0 && value && strlen(value)) {
822         apr_size_t dlen;
823         char       *dvalue;
824
825         dlen   = strlen(value);
826         value = chxj_url_decode(pool, value);
827         dvalue = chxj_rencoding(r, value, &dlen);
828         dvalue = chxj_url_encode(pool,dvalue);
829         result = apr_pstrcat(pool, result, &name[8], "=", dvalue, NULL);
830
831       }
832       else {
833         result = apr_pstrcat(pool, result, &name[8], "=", value, NULL);
834       }
835     }
836     else
837     if (strcasecmp(name, CHXJ_COOKIE_PARAM) == 0 || strcasecmp(name, "%5Fchxj%5Fcc") == 0) {
838       if (! cookie) {
839         apr_table_unset(r->headers_in, "Cookie");
840         DBG(r, "REQ[%X] found cookie parameter[%s]",    (unsigned int)(apr_size_t)r, value);
841         DBG(r, "REQ[%X] call start chxj_load_cookie()", (unsigned int)(apr_size_t)r);
842         cookie_lock_t *lock = chxj_cookie_lock(r);
843         cookie = chxj_load_cookie(r, value);
844         DBG(r, "REQ[%X] call end   chxj_load_cookie()", (unsigned int)(apr_size_t)r);
845         if (! no_update_flag && cookie) {
846           cookie = chxj_update_cookie(r, cookie);
847         }
848         chxj_cookie_unlock(r, lock);
849       }
850       if (cookie && cookie->cookie_id) {
851         if (strlen(result) != 0)
852           result = apr_pstrcat(pool, result, "&", NULL);
853         result = apr_pstrcat(pool, result, name, "=", cookie->cookie_id, NULL);
854       }
855     }
856     else
857     if (strcasecmp(name, CHXJ_COOKIE_NOUPDATE_PARAM) == 0) {
858       if (strlen(result) != 0)
859         result = apr_pstrcat(pool, result, "&", NULL);
860       result = apr_pstrcat(pool, result, name, "=", value, NULL);
861     }
862     else
863     if ( strncasecmp(name, CHXJ_QUERY_STRING_PARAM_PREFIX,     sizeof(CHXJ_QUERY_STRING_PARAM_PREFIX)-1) == 0) {
864       apr_size_t dlen;
865       char*      dvalue;
866       dlen   = strlen(value);
867       if (dlen && value) {
868         value = chxj_url_decode(pool, value);
869         dvalue = chxj_rencoding(r, value, &dlen);
870         dvalue = chxj_url_encode(pool,dvalue);
871         if (r->args && strlen(r->args) > 0) {
872           r->args = apr_pstrcat(pool, r->args, "&", &name[sizeof(CHXJ_QUERY_STRING_PARAM_PREFIX)-1], "=", dvalue, NULL);
873         }
874         else {
875           r->args = apr_pstrcat(pool, &name[sizeof(CHXJ_QUERY_STRING_PARAM_PREFIX)-1], "=", dvalue, NULL);
876         }
877         s_convert_guid_parameter_to_header(r, &name[sizeof(CHXJ_QUERY_STRING_PARAM_PREFIX)-1], spec);
878       }
879     }
880     else
881     if (strncasecmp(name, CHXJ_QUERY_STRING_PARAM_PREFIX_ENC, sizeof(CHXJ_QUERY_STRING_PARAM_PREFIX_ENC)-1) == 0) {
882       apr_size_t dlen;
883       char*      dvalue;
884       dlen   = strlen(value);
885       if (dlen && value) {
886         value = chxj_url_decode(pool, value);
887         dvalue = chxj_rencoding(r, value, &dlen);
888         dvalue = chxj_url_encode(pool,dvalue);
889         if (r->args && strlen(r->args) > 0) {
890           r->args = apr_pstrcat(pool, r->args, "&", &name[sizeof(CHXJ_QUERY_STRING_PARAM_PREFIX_ENC)-1], "=", dvalue, NULL);
891         }
892         else {
893           r->args = apr_pstrcat(pool, &name[sizeof(CHXJ_QUERY_STRING_PARAM_PREFIX_ENC)-1], "=", dvalue, NULL);
894         }
895         s_convert_guid_parameter_to_header(r, &name[sizeof(CHXJ_QUERY_STRING_PARAM_PREFIX_ENC)-1], spec);
896       }
897     }
898     DBG(r, "REQ[%X] ************************ name:[%s]", (unsigned int)(apr_size_t)r, name);
899   }
900   *len = strlen(result);
901   apr_table_setn(r->headers_in, "X-Chxj-Cookie-No-Update", "true");
902   if (! no_update_flag) {
903     result = apr_pstrcat(pool, result, "&_chxj_nc=true", NULL);
904   }
905
906   DBG(r, "REQ[%X] AFTER input convert result = [%s]", (unsigned int)(apr_size_t)r, result);
907   DBG(r, "REQ[%X] end chxj_input_convert()", (unsigned int)(apr_size_t)r);
908
909   return result;
910 }
911
912
913 /**
914  * The received data is returned to the filter.
915  *
916  * @param f    [i/o] It is a filter. 
917  * @param data [i]   It is data returned to the filter. 
918  * @param len  [i]   It is length of the data returned to the filter. 
919  */
920 static apr_status_t 
921 pass_data_to_filter(ap_filter_t *f, const char *data, 
922                                         apr_size_t len)
923 {
924   request_rec         *r = f->r;
925   conn_rec            *c = r->connection;
926   apr_status_t        rv;
927   apr_bucket_brigade  *bb;
928   apr_bucket          *b;
929
930   DBG(r, "REQ[%X] start pass_data_to_filter()", (unsigned int)(apr_size_t)r);
931
932   chxj_header_inf_clear(r);
933
934   bb = apr_brigade_create(r->pool, c->bucket_alloc);
935   b  = apr_bucket_transient_create(data, len, c->bucket_alloc);
936
937   APR_BRIGADE_INSERT_TAIL(bb, b);
938   b = apr_bucket_eos_create(f->c->bucket_alloc);
939   APR_BRIGADE_INSERT_TAIL(bb, b);
940
941   rv = ap_pass_brigade(f->next, bb);
942   if (rv != APR_SUCCESS) {
943     DBG(r, "REQ[%X] end pass_data_to_filter() (apr_pass_brigade)", (unsigned int)(apr_size_t)r);
944     return rv;
945   }
946
947   DBG(r, "REQ[%X] end pass_data_to_filter()", (unsigned int)(apr_size_t)r);
948
949   return rv;
950 }
951
952
953 /**
954  * Add No Cache Header
955  */
956 static void
957 s_add_no_cache_headers(request_rec *r, chxjconvrule_entry  *entryp)
958 {
959   if (entryp->action & CONVRULE_NOCACHE_ON_BIT) {
960     apr_table_unset(r->headers_out,     "Pragma");
961     apr_table_unset(r->err_headers_out, "Pragma");
962     apr_table_unset(r->headers_out,     "Expires");
963     apr_table_unset(r->err_headers_out, "Expires");
964     apr_table_unset(r->headers_out,     "Cache-Control");
965     apr_table_unset(r->err_headers_out, "Cache-Control");
966
967     apr_table_setn(r->err_headers_out, "Pragma", "no-cache");
968     apr_table_setn(r->err_headers_out, "Expires", "Thu, 01 Jan 1970 00:00:00 GMT");
969     apr_table_setn(r->err_headers_out, "Cache-Control", "no-cache, no-store");
970   }
971 }
972
973
974 /**
975  * It is the main loop of the output filter. 
976  *
977  * @param f   [i/o] It is a filter.
978  * @param bb  [i]   
979  */
980 static apr_status_t 
981 chxj_output_filter(ap_filter_t *f, apr_bucket_brigade *bb)
982 {
983   request_rec         *r;
984   apr_status_t        rv;
985   apr_bucket          *b;
986   const char          *data;
987   char                *user_agent = NULL;
988   apr_size_t          len;
989   mod_chxj_ctx        *ctx = (mod_chxj_ctx *)f->ctx;
990   cookie_t            *cookie = NULL;
991   mod_chxj_config     *dconf;
992   chxjconvrule_entry  *entryp = NULL;
993   device_table        *spec = NULL;
994   apr_pool_t          *pool;
995
996   r  = f->r;
997   DBG(f->r, "REQ[%X] start of chxj_output_filter()", (unsigned int)(apr_size_t)r);
998   rv = APR_SUCCESS;
999
1000   apr_pool_create(&pool, r->pool);
1001
1002   entryp = ctx->entryp;
1003   spec   = ctx->spec;
1004   dconf  = chxj_get_module_config(r->per_dir_config, &chxj_module);
1005
1006   if (r->content_type) {
1007     if (! STRNCASEEQ('t','T',"text/html",r->content_type, sizeof("text/html")-1)
1008     &&  ! STRNCASEEQ('t','T',"text/xml", r->content_type, sizeof("text/xml")-1)
1009     &&  ! STRNCASEEQ('a','A',"application/xhtml+xml", r->content_type, sizeof("application/xhtml+xml")-1)
1010     &&  ! (dconf->image == CHXJ_IMG_ON
1011           && ! apr_table_get(r->headers_in, "CHXJ_IMG_CONV")
1012           && STRNCASEEQ('i','I',"image/",  r->content_type, sizeof("image/") -1)
1013           && ( STRCASEEQ('j','J',"jpeg",            &r->content_type[6])         /* JPEG */
1014             || STRCASEEQ('j','J',"jp2",             &r->content_type[6])         /* JPEG2000 */
1015             || STRCASEEQ('j','J',"jpeg2000",        &r->content_type[6])         /* JPEG2000 */
1016             || STRCASEEQ('j','J',"jpeg2000-image",  &r->content_type[6])         /* JPEG2000 */
1017             || STRCASEEQ('x','X',"x-jpeg2000-image",&r->content_type[6])         /* JPEG2000 */
1018             || STRCASEEQ('p','P',"png",             &r->content_type[6])         /* PNG */
1019             || STRCASEEQ('x','X',"x-png",           &r->content_type[6])         /* PNG */
1020             || STRCASEEQ('g','G',"gif",             &r->content_type[6])))) {     /* GIF */
1021       
1022       DBG(r, "REQ[%X] not convert content-type:[%s] dconf->image:[%d]", (unsigned int)(apr_size_t)r, r->content_type, dconf->image);
1023       if (entryp->action & CONVRULE_COOKIE_ON_BIT) {
1024         cookie_lock_t *lock = NULL;
1025         DBG(r, "REQ[%X] entryp->action == COOKIE_ON_BIT", (unsigned int)(apr_size_t)r);
1026         switch(spec->html_spec_type) {
1027         case CHXJ_SPEC_Chtml_1_0:
1028         case CHXJ_SPEC_Chtml_2_0:
1029         case CHXJ_SPEC_Chtml_3_0:
1030         case CHXJ_SPEC_Chtml_4_0:
1031         case CHXJ_SPEC_Chtml_5_0:
1032         case CHXJ_SPEC_Chtml_6_0:
1033         case CHXJ_SPEC_Chtml_7_0:
1034         case CHXJ_SPEC_XHtml_Mobile_1_0:
1035         case CHXJ_SPEC_Jhtml:
1036           lock = chxj_cookie_lock(r);
1037           cookie = chxj_save_cookie(r);
1038           s_add_cookie_id_if_has_location_header(r, cookie);
1039           chxj_cookie_unlock(r, lock);
1040           break;
1041         default:
1042           break;
1043         }
1044       }
1045       if (apr_table_get(r->headers_out, "Location") || apr_table_get(r->err_headers_out, "Location")) {
1046         if (! ap_is_HTTP_REDIRECT(r->status)) {
1047           r->status = HTTP_MOVED_TEMPORARILY;
1048         }
1049       }
1050       s_add_no_cache_headers(r, entryp);
1051       ap_pass_brigade(f->next, bb);
1052       DBG(f->r, "REQ[%X] end of chxj_output_filter()", (unsigned int)(apr_size_t)r);
1053       return APR_SUCCESS;
1054     }
1055   }
1056   else {
1057     DBG(r, "REQ[%X] not convert content-type:[(null)]", (unsigned int)(apr_size_t)r);
1058     ap_pass_brigade(f->next, bb);
1059     DBG(f->r, "REQ[%X] end of chxj_output_filter()", (unsigned int)(apr_size_t)r);
1060     return APR_SUCCESS;
1061   }
1062
1063
1064   for (b = APR_BRIGADE_FIRST(bb);
1065        b != APR_BRIGADE_SENTINEL(bb); 
1066        b = APR_BUCKET_NEXT(b)) {
1067
1068     if (apr_bucket_read(b, &data, &len, APR_BLOCK_READ) == APR_SUCCESS) {
1069       DBG(r, "REQ[%X] read data[%.*s]",(unsigned int)(apr_size_t)r, (int)len, data);
1070
1071       /*--------------------------------------------------------------------*/
1072       /* append data                                                        */
1073       /*--------------------------------------------------------------------*/
1074       char *tmp;
1075       DBG(r, "append data start");
1076       ctx = (mod_chxj_ctx *)f->ctx;
1077
1078       if (len > 0) {
1079         tmp = apr_palloc(r->pool, ctx->len);
1080         memcpy(tmp, ctx->buffer, ctx->len);
1081
1082         ctx->buffer = apr_palloc(pool, ctx->len + len);
1083
1084         memcpy(ctx->buffer, tmp, ctx->len);
1085         memcpy(&ctx->buffer[ctx->len], data, len);
1086
1087         ctx->len += len;
1088       }
1089       DBG(r, "REQ[%X] append data end", (unsigned int)(apr_size_t)r);
1090     }
1091
1092     if (APR_BUCKET_IS_EOS(b)) {
1093
1094       DBG(r, "REQ[%X] eos", (unsigned int)(apr_size_t)r);
1095       /*----------------------------------------------------------------------*/
1096       /* End Of File                                                          */
1097       /*----------------------------------------------------------------------*/
1098       if (ctx) {
1099         cookie_lock_t *lock = NULL;
1100         ctx = (mod_chxj_ctx *)f->ctx;
1101
1102         DBG(r, "REQ[%X] content_type=[%s]", (unsigned int)(apr_size_t)r, r->content_type);
1103         lock = chxj_cookie_lock(r);
1104
1105         if (spec->html_spec_type != CHXJ_SPEC_UNKNOWN 
1106             && r->content_type 
1107             && (STRNCASEEQ('a','A',"application/xhtml+xml", r->content_type, sizeof("application/xhtml+xml")-1)
1108             ||  STRNCASEEQ('t','T',"text/html", r->content_type, sizeof("text/html")-1))) {
1109           DBG(r, "REQ[%X] detect convert target:[%s]", (unsigned int)(apr_size_t)r, r->content_type);
1110
1111           if (ctx->len) {
1112             char *tmp;
1113
1114             tmp = apr_palloc(pool, ctx->len + 1);
1115
1116             memset(tmp, 0, ctx->len + 1);
1117             memcpy(tmp, ctx->buffer, ctx->len);
1118
1119             ctx->buffer = chxj_convert(r, 
1120                                        (const char **)&tmp, 
1121                                        (apr_size_t *)&ctx->len,
1122                                        spec,
1123                                        user_agent, &cookie);
1124
1125           }
1126           else {
1127             ctx->buffer = apr_psprintf(r->pool, "\n");
1128             ctx->len += 1;
1129             ctx->buffer = chxj_convert(r, 
1130                                        (const char **)&ctx->buffer, 
1131                                        (apr_size_t *)&ctx->len,
1132                                        spec,
1133                                        user_agent, &cookie);
1134
1135           }
1136         }
1137         if (r->content_type
1138             && *(char *)r->content_type == 't'
1139             && strncmp(r->content_type, "text/xml",   8) == 0) {
1140           DBG(r, "REQ[%X] text/XML", (unsigned int)(apr_size_t)r);
1141
1142           Doc       doc;
1143           Node      *root;
1144           Node      *child;
1145           qr_code_t qrcode;
1146           int       sts;
1147       
1148           memset(&doc,    0, sizeof(Doc));
1149           memset(&qrcode, 0, sizeof(qr_code_t));
1150           doc.r = r;
1151           doc.parse_mode  = PARSE_MODE_CHTML;
1152           qrcode.doc      = &doc;
1153           qrcode.r        = r;
1154       
1155           qs_init_malloc(&doc);
1156       
1157           root = qs_parse_string(&doc, ctx->buffer, ctx->len);
1158
1159           sts = 0;
1160           for (child = qs_get_child_node(&doc,root);
1161                child ;
1162                child = qs_get_next_node(&doc,child)) {
1163             char *name = qs_get_node_name(&doc,child);
1164             if (strcasecmp("qrcode",name) == 0) {
1165               sts++;
1166               break;
1167             }
1168           }
1169           qs_all_free(&doc,QX_LOGMARK);
1170           if (sts) {
1171             r->handler = apr_psprintf(r->pool, "chxj-qrcode");
1172             chxj_qrcode_node_to_qrcode(&qrcode, root);
1173             sts = chxj_qrcode_create_image_data(&qrcode, &ctx->buffer, &ctx->len);
1174             if (sts != OK) {
1175               ERR(r, "REQ[%X] qrcode create failed.", (unsigned int)(apr_size_t)r);
1176               chxj_cookie_unlock(r, lock);
1177               DBG(f->r, "REQ[%X] end of chxj_output_filter()", (unsigned int)(apr_size_t)r);
1178               return sts;
1179             }
1180             r->content_type = apr_psprintf(r->pool, "image/jpeg");
1181           }
1182         }
1183
1184         if (spec->html_spec_type != CHXJ_SPEC_UNKNOWN 
1185             && r->content_type 
1186             && ( *r->content_type == 'i' || *r->content_type == 'I')
1187             && dconf->image == CHXJ_IMG_ON
1188             && strncasecmp("image/", r->content_type, 6) == 0
1189             && ( STRCASEEQ('j','J',"jpeg",            &r->content_type[6])         /* JPEG */
1190               || STRCASEEQ('j','J',"jp2",             &r->content_type[6])         /* JPEG2000 */
1191               || STRCASEEQ('j','J',"jpeg2000",        &r->content_type[6])         /* JPEG2000 */
1192               || STRCASEEQ('j','J',"jpeg2000-image",  &r->content_type[6])         /* JPEG2000 */
1193               || STRCASEEQ('x','X',"x-jpeg2000-image",&r->content_type[6])         /* JPEG2000 */
1194               || STRCASEEQ('p','P',"png",             &r->content_type[6])         /* PNG */
1195               || STRCASEEQ('x','X',"x-png",           &r->content_type[6])         /* PNG */
1196               || STRCASEEQ('g','G',"gif",             &r->content_type[6]))) {     /* GIF */
1197           if (ctx->len) {
1198             char *tmp;
1199
1200             tmp = apr_palloc(pool, ctx->len + 1);
1201
1202             memset(tmp, 0, ctx->len + 1);
1203             memcpy(tmp, ctx->buffer, ctx->len);
1204             ctx->buffer = 
1205               chxj_convert_image(r, 
1206                                   (const char **)&tmp,
1207                                   (apr_size_t *)&ctx->len);
1208             if (ctx->buffer == NULL) {
1209               ctx->buffer = tmp;
1210             }
1211           }
1212         }
1213
1214         apr_table_unset(r->headers_out, "Content-Length");
1215         apr_table_unset(r->err_headers_out, "Content-Length");
1216         ap_set_content_length(r, (apr_off_t)ctx->len);
1217
1218         
1219         if (ctx->len > 0) {
1220           DBG(r, "REQ[%X] call pass_data_to_filter()", (unsigned int)(apr_size_t)r);
1221           s_add_cookie_id_if_has_location_header(r, cookie);
1222           if (apr_table_get(r->headers_out, "Location") || apr_table_get(r->err_headers_out, "Location")) {
1223             if (! ap_is_HTTP_REDIRECT(r->status)) {
1224               r->status = HTTP_MOVED_TEMPORARILY;
1225               ctx->buffer = apr_pstrdup(pool, "");
1226               ctx->len    = 0;
1227             }
1228           }
1229           chxj_cookie_unlock(r,lock);
1230           s_add_no_cache_headers(r, entryp);
1231           rv = pass_data_to_filter(f, 
1232                                    (const char *)ctx->buffer, 
1233                                    (apr_size_t)ctx->len);
1234         }
1235         else {
1236           chxj_cookie_unlock(r, lock);
1237
1238         }
1239         DBG(f->r, "REQ[%X] end of chxj_output_filter()", (unsigned int)(apr_size_t)r);
1240         return rv;
1241       }
1242       else {
1243         DBG(r, "REQ[%X] SAVE COOKIE[%x]", (unsigned int)(apr_size_t)r, entryp->action);
1244
1245         /*
1246          * save cookie.
1247          */
1248         if (entryp->action & CONVRULE_COOKIE_ON_BIT) {
1249           cookie_lock_t *lock = NULL;
1250           DBG(r, "REQ[%X] entryp->action == COOKIE_ON_BIT", (unsigned int)(apr_size_t)r);
1251           switch(spec->html_spec_type) {
1252           case CHXJ_SPEC_Chtml_1_0:
1253           case CHXJ_SPEC_Chtml_2_0:
1254           case CHXJ_SPEC_Chtml_3_0:
1255           case CHXJ_SPEC_Chtml_4_0:
1256           case CHXJ_SPEC_Chtml_5_0:
1257           case CHXJ_SPEC_Chtml_6_0:
1258           case CHXJ_SPEC_Chtml_7_0:
1259           case CHXJ_SPEC_XHtml_Mobile_1_0:
1260           case CHXJ_SPEC_Jhtml:
1261             lock = chxj_cookie_lock(r);
1262             cookie = chxj_save_cookie(r);
1263             /*
1264              * Location Header Check to add cookie parameter.
1265              */
1266             s_add_cookie_id_if_has_location_header(r, cookie);
1267             chxj_cookie_unlock(r, lock);
1268             apr_table_unset(r->headers_out, "Set-Cookie");
1269             apr_table_unset(r->err_headers_out, "Set-Cookie");
1270             break;
1271
1272           default:
1273             break;
1274           }
1275         }
1276         if (apr_table_get(r->headers_out, "Location") || apr_table_get(r->err_headers_out, "Location")) {
1277           if (! ap_is_HTTP_REDIRECT(r->status)) {
1278             r->status = HTTP_MOVED_TEMPORARILY;
1279           }
1280         }
1281         apr_table_setn(r->headers_out, "Content-Length", "0");
1282         DBG(r, "REQ[%X] call pass_data_to_filter()", (unsigned int)(apr_size_t)r);
1283         s_add_no_cache_headers(r, entryp);
1284         rv = pass_data_to_filter(f, (const char *)"", (apr_size_t)0);
1285         DBG(f->r, "REQ[%X] end of chxj_output_filter()", (unsigned int)(apr_size_t)r);
1286         return rv;
1287       }
1288     }
1289   }
1290   apr_brigade_destroy(bb);
1291
1292   DBG(f->r, "REQ[%X] end of chxj_output_filter()", (unsigned int)(apr_size_t)r);
1293
1294   return APR_SUCCESS;
1295 }
1296
1297 /**
1298  * Add Cookie_id if it has location header.
1299  */
1300 static void
1301 s_add_cookie_id_if_has_location_header(request_rec *r, cookie_t *cookie)
1302 {
1303   char *location_header = (char *)apr_table_get(r->headers_out, "Location");
1304   if (! location_header) {
1305     location_header = (char *)apr_table_get(r->err_headers_out, "Location");
1306   }
1307   if (cookie && location_header) {
1308     DBG(r, "REQ[%X] Location Header=[%s]", (unsigned int)(apr_size_t)r, location_header);
1309     location_header = chxj_add_cookie_parameter(r,
1310                                                 location_header,
1311                                                 cookie);
1312     apr_table_unset(r->headers_out, "Location");
1313     apr_table_setn(r->headers_out, "Location", location_header);
1314     DBG(r, "REQ[%X] Location Header=[%s]", (unsigned int)(apr_size_t)r, location_header);
1315     if (!ap_is_HTTP_REDIRECT(r->status)) {
1316       r->status = HTTP_MOVED_TEMPORARILY;
1317     }
1318   }
1319 }
1320
1321 /**
1322  * It is the main loop of the input filter handler. 
1323  *
1324  */
1325 static apr_status_t
1326 chxj_input_handler(request_rec *r)
1327 {
1328   mod_chxj_config     *dconf;
1329   chxjconvrule_entry  *entryp = NULL;
1330   device_table        *spec   = NULL;
1331   char                *post_data = NULL;
1332   apr_size_t          post_data_len = 0;
1333   char                *response;
1334   char                *user_agent;
1335   apr_pool_t          *pool;
1336   apr_size_t          ii;
1337   int                 response_code = 0;
1338   
1339   DBG(r, "start of chxj_input_handler()");
1340
1341   if (strcasecmp(r->handler, "chxj-input-handler")) {
1342     DBG(r, "end chxj_input_handler()");
1343     return DECLINED;
1344   }
1345   apr_pool_create(&pool, r->pool);
1346
1347   dconf      = chxj_get_module_config(r->per_dir_config, &chxj_module);
1348   user_agent = (char*)apr_table_get(r->headers_in, "User-Agent");
1349   spec       = chxj_specified_device(r, user_agent);
1350   entryp     = chxj_apply_convrule(r, dconf->convrules);
1351
1352   post_data = apr_pstrdup(pool, "");
1353   if (ap_setup_client_block(r, REQUEST_CHUNKED_DECHUNK) == OK) {
1354     if (ap_should_client_block(r)) {
1355       while (post_data_len < CHXJ_POST_MAX) {
1356 #define BUFSZ (256)
1357         char buffer[BUFSZ];
1358         int read_bytes = ap_get_client_block(r, buffer, BUFSZ-1);
1359         if (read_bytes<=0) {
1360           break;
1361         }
1362         buffer[read_bytes] = '\0';
1363         post_data = apr_pstrcat(pool, post_data, buffer, NULL);
1364         post_data_len += read_bytes;
1365 #undef BUFSZ
1366       }
1367     }
1368   }
1369
1370   /* 
1371    * now convert.
1372    */
1373   if (post_data_len > 0) {
1374     post_data = chxj_input_convert(r, (const char**)&post_data, (apr_size_t*)&post_data_len, entryp, spec);
1375     DBG(r, "(in:exchange)POSTDATA:[%s]", post_data);
1376   }
1377
1378   char *url_path;
1379   if (dconf->forward_url_base) {
1380     url_path = apr_psprintf(pool, "%s%s", dconf->forward_url_base, r->uri);
1381   }
1382   else {
1383     url_path = apr_psprintf(pool, "%s://%s:%d%s", chxj_apache_run_http_scheme(r), ap_get_server_name(r), ap_get_server_port(r), r->uri);
1384   }
1385   if (r->args) {
1386     url_path = apr_pstrcat(pool, url_path, "?", r->args, NULL);
1387   }
1388   DBG(r, "==> new url_path:[%s]", url_path);
1389
1390   apr_size_t res_len;
1391   apr_table_setn(r->headers_in, CHXJ_HEADER_ORIG_CLIENT_IP, r->connection->remote_ip);
1392   apr_table_unset(r->headers_in, "Content-Length");
1393   apr_table_setn(r->headers_in, "Content-Length", apr_psprintf(pool, "%" APR_SIZE_T_FMT, post_data_len));
1394   response = chxj_serf_post(r, pool, url_path, post_data, post_data_len, 1, &res_len, &response_code);
1395   DBG(r, "REQ[%X] -------------------------------------------------------", (unsigned int)(apr_size_t)r);
1396   DBG(r, "REQ[%X] response length:[%" APR_SIZE_T_FMT "]", (unsigned int)(apr_size_t)r, res_len);
1397   for (ii=0; ii<res_len/64; ii++) {
1398     DBG(r, "REQ[%X] response:[%.*s]", (unsigned int)(apr_size_t)r, 64, &response[ii*64]);
1399   }
1400   DBG(r, "REQ[%X] -------------------------------------------------------", (unsigned int)(apr_size_t)r);
1401
1402   char *chunked;
1403   if ((chunked = (char *)apr_table_get(r->headers_out, "Transfer-Encoding")) != NULL) {
1404     if (strcasecmp(chunked, "chunked") == 0) {
1405       r->chunked = 1;  
1406       apr_table_unset(r->headers_out, "Transfer-Encoding");
1407     }
1408   }
1409   if (ap_is_HTTP_ERROR(response_code)) {
1410     DBG(r, "REQ[%X] end of chxj_input_handler() (HTTP-ERROR received. response code:[%d])", (unsigned int)(apr_size_t)r, response_code);
1411     return response_code;
1412   }
1413   {
1414     apr_pool_t *wpool;
1415     apr_pool_create(&wpool, r->pool);
1416     apr_bucket_brigade *bb;
1417     apr_bucket *e;
1418     apr_status_t rv;
1419     conn_rec *c = r->connection;
1420     
1421     bb = apr_brigade_create(wpool, c->bucket_alloc);
1422     e  = apr_bucket_transient_create(response, res_len, c->bucket_alloc);
1423     APR_BRIGADE_INSERT_TAIL(bb, e);
1424     e = apr_bucket_eos_create(c->bucket_alloc);
1425     APR_BRIGADE_INSERT_TAIL(bb, e);
1426     if ((rv = ap_pass_brigade(r->output_filters, bb)) != APR_SUCCESS) {
1427       ERR(r, "REQ[%X] %s:%d failed ap_pass_brigade()", (unsigned int)(apr_size_t)r, APLOG_MARK);
1428       return rv;
1429     }
1430     apr_brigade_cleanup(bb);
1431   }
1432
1433   DBG(r, "REQ[%X] end of chxj_input_handler()", (unsigned int)(apr_size_t)r);
1434   return APR_SUCCESS;
1435 }
1436
1437 static mod_chxj_global_config *
1438 chxj_global_config_create(apr_pool_t *pool, server_rec *s)
1439 {
1440   mod_chxj_global_config *conf;
1441
1442   SDBG(s, "start chxj_global_config_create()");
1443
1444   /*--------------------------------------------------------------------------*/
1445   /* allocate an own subpool which survives server restarts                   */
1446   /*--------------------------------------------------------------------------*/
1447   conf = (mod_chxj_global_config *)apr_palloc(pool, 
1448                   sizeof(mod_chxj_global_config));
1449 #if 0
1450   conf->cookie_db_lock = NULL;
1451 #endif
1452   SDBG(s, "end   chxj_global_config_create()");
1453
1454   return conf;
1455 }
1456
1457
1458 /**
1459  * initialize chxj module
1460  */
1461 static int 
1462 chxj_init_module(apr_pool_t *p, 
1463                  apr_pool_t *UNUSED(plog), 
1464                  apr_pool_t *UNUSED(ptemp), 
1465                  server_rec *s)
1466 {
1467   void *user_data;
1468   apr_status_t rv;
1469
1470   SDBG(s, "start chxj_init_module()");
1471
1472   apr_pool_userdata_get(&user_data, CHXJ_MOD_CONFIG_KEY, s->process->pool);
1473   SDBG(s, " ");
1474   if (user_data == NULL) {
1475     SDBG(s, " ");
1476     /*
1477      * dummy user_data set.
1478      */
1479     apr_pool_userdata_set(
1480       (const void *)(1), 
1481       CHXJ_MOD_CONFIG_KEY, 
1482       apr_pool_cleanup_null, 
1483       s->process->pool);
1484     SDBG(s, "end  chxj_init_module()");
1485     return OK;
1486   }
1487
1488   ap_add_version_component(p, CHXJ_VERSION_PREFIX CHXJ_VERSION);
1489
1490   if ((rv = apr_proc_mutex_create(&global_cookie_mutex, NULL,  APR_LOCK_FCNTL, s->process->pool)) != APR_SUCCESS) {
1491     char errstr[255];
1492     SERR(s, "%s:%d end chxj_init_module(). mutex create failure.(%d:%s)",APLOG_MARK, rv,apr_strerror(rv,errstr,255));
1493     return HTTP_INTERNAL_SERVER_ERROR;
1494   }
1495
1496   SDBG(s, "end  chxj_init_module()");
1497
1498   return OK;
1499 }
1500
1501
1502 static void 
1503 chxj_child_init(apr_pool_t *UNUSED(p), server_rec *s)
1504 {
1505   apr_status_t rv;
1506   SDBG(s, "start chxj_child_init()");
1507   if ((rv = apr_proc_mutex_child_init(&global_cookie_mutex, NULL, s->process->pool)) != APR_SUCCESS) {
1508     char errstr[255];
1509     SERR(s, "%s:%d ERROR end chxj_init_module(). mutex create failure.(%d:%s)", APLOG_MARK, rv,apr_strerror(rv,errstr,255));
1510   }
1511   SDBG(s, "end   chxj_child_init()");
1512 }
1513
1514
1515 /**
1516  * A set structure of each server is generated. 
1517  * 
1518  * @param p
1519  * @param s
1520  */
1521 static void *
1522 chxj_config_server_create(apr_pool_t *p, server_rec *s)
1523 {
1524   mod_chxj_global_config *gc;
1525
1526   gc = chxj_global_config_create(p,s);
1527
1528   return gc;
1529 }
1530
1531
1532 static int
1533 chxj_translate_name(request_rec *r)
1534 {
1535   DBG(r, "REQ[%X] =======================================================================", (unsigned int)(apr_size_t)r);
1536   DBG(r, "REQ[%X] ", (unsigned int)(apr_size_t)r);
1537   DBG(r, "REQ[%X] START REQUEST (uri:[%s] args:[%s])", (unsigned int)(apr_size_t)r, r->unparsed_uri, r->args ? r->args : "");
1538   DBG(r, "REQ[%X] ", (unsigned int)(apr_size_t)r);
1539   DBG(r, "REQ[%X] =======================================================================", (unsigned int)(apr_size_t)r);
1540   return chxj_trans_name(r);
1541 }
1542
1543
1544 static void 
1545 chxj_insert_filter(request_rec *r)
1546 {
1547   char                *user_agent;
1548   device_table        *spec;
1549   mod_chxj_config     *dconf;
1550   chxjconvrule_entry  *entryp;
1551   mod_chxj_ctx        *ctx;
1552   apr_status_t        rv;
1553   char                *contentType;
1554
1555   DBG(r, "start chxj_insert_filter()");
1556
1557   dconf = chxj_get_module_config(r->per_dir_config, &chxj_module);
1558
1559   user_agent = (char*)apr_table_get(r->headers_in, HTTP_USER_AGENT);
1560
1561   contentType = (char *)apr_table_get(r->headers_in, "Content-Type");
1562   if (contentType
1563       && strncasecmp("multipart/form-data", contentType, 19) == 0) {
1564     DBG(r, "detect multipart/form-data ==> no target");
1565     return;
1566   }
1567
1568   spec = chxj_specified_device(r, user_agent);
1569   entryp = chxj_apply_convrule(r, dconf->convrules);
1570   if (!entryp) {
1571     DBG(r, "end chxj_insert_filter()");
1572     return;
1573   }
1574   ctx = apr_palloc(r->pool, sizeof(*ctx));
1575   memset(ctx, 0, sizeof(*ctx));
1576   if ((rv = apr_pool_create(&ctx->pool, r->pool)) != APR_SUCCESS) {
1577     ERR(r, "failed: new pool create. rv:[%d]", rv);
1578     return;
1579   }
1580   ctx->entryp = entryp;
1581   ctx->spec   = spec;
1582   ctx->buffer = apr_palloc(ctx->pool, 1);
1583   ctx->buffer[0] = 0;
1584
1585   if (!entryp || !(entryp->action & CONVRULE_ENGINE_ON_BIT)) {
1586     DBG(r,"EngineOff");
1587     return;
1588   }
1589
1590   switch(spec->html_spec_type) {
1591   case CHXJ_SPEC_Chtml_1_0:
1592   case CHXJ_SPEC_Chtml_2_0:
1593   case CHXJ_SPEC_Chtml_3_0:
1594   case CHXJ_SPEC_Chtml_4_0:
1595   case CHXJ_SPEC_Chtml_5_0:
1596   case CHXJ_SPEC_Chtml_6_0:
1597   case CHXJ_SPEC_Chtml_7_0:
1598   case CHXJ_SPEC_XHtml_Mobile_1_0:
1599   case CHXJ_SPEC_Hdml:
1600   case CHXJ_SPEC_Jhtml:
1601   case CHXJ_SPEC_Jxhtml:
1602     break;
1603
1604   default:
1605     return;
1606   }
1607
1608
1609   if (! apr_table_get(r->headers_in, "X-Chxj-Forward")) {
1610     ap_add_output_filter("chxj_output_filter", ctx, r, r->connection);
1611     DBG(r, "added Output Filter");
1612   }
1613
1614   DBG(r, "end   chxj_insert_filter()");
1615 }
1616
1617
1618 /**
1619  * The hook is registered.
1620  *
1621  * @param p
1622  */
1623 static void 
1624 chxj_register_hooks(apr_pool_t *UNUSED(p))
1625 {
1626   ap_hook_post_config(chxj_init_module,
1627                       NULL,
1628                       NULL,
1629                       APR_HOOK_REALLY_FIRST);
1630   ap_hook_child_init(chxj_child_init, 
1631                      NULL, 
1632                      NULL, 
1633                      APR_HOOK_REALLY_FIRST);
1634   ap_register_output_filter (
1635                       "chxj_output_filter", 
1636                       chxj_output_filter, 
1637                       NULL, 
1638                       AP_FTYPE_RESOURCE);
1639   ap_hook_insert_filter(chxj_insert_filter, NULL, NULL, APR_HOOK_MIDDLE);
1640   ap_hook_handler(chxj_img_conv_format_handler, NULL, NULL, APR_HOOK_MIDDLE);
1641   ap_hook_handler(chxj_qr_code_handler, NULL, NULL, APR_HOOK_MIDDLE);
1642   ap_hook_handler(chxj_input_handler, NULL, NULL, APR_HOOK_MIDDLE);
1643   ap_hook_translate_name(chxj_translate_name, NULL, NULL, APR_HOOK_MIDDLE);
1644   ap_hook_fixups(chxj_headers_fixup, NULL, NULL, APR_HOOK_FIRST);
1645 }
1646
1647
1648 /**
1649  * A set structure according to the directory is generated. 
1650  *
1651  * @param p
1652  * @param arg
1653  */
1654 static void * 
1655 chxj_create_per_dir_config(apr_pool_t *p, char *arg) 
1656 {
1657   mod_chxj_config *conf;
1658
1659   conf = apr_pcalloc(p, sizeof(mod_chxj_config));
1660   conf->device_data_file = NULL;
1661   conf->devices          = NULL;
1662   conf->emoji_data_file  = NULL;
1663   conf->emoji            = NULL;
1664   conf->emoji_tail       = NULL;
1665   conf->image            = CHXJ_IMG_NONE;
1666   conf->image_cache_dir  = apr_psprintf(p, "%s",DEFAULT_IMAGE_CACHE_DIR);
1667   conf->image_cache_limit = 0;
1668   conf->server_side_encoding = NULL;
1669   conf->cookie_db_dir    = NULL;
1670   conf->cookie_timeout   = 0;
1671   conf->cookie_store_type = COOKIE_STORE_TYPE_NONE;
1672   conf->cookie_lazy_mode  = 0;
1673 #if defined(USE_MYSQL_COOKIE)
1674   memset((void *)&conf->mysql, 0, sizeof(mysql_t));
1675   conf->mysql.port       = MYSQL_PORT;
1676   conf->mysql.host       = NULL;
1677 #endif
1678 #if defined(USE_MEMCACHE_COOKIE)
1679   memset((void *)&conf->memcache, 0, sizeof(memcache_t));
1680   conf->memcache.host    = NULL;
1681   conf->memcache.port    = 0;
1682 #endif
1683   conf->forward_url_base = NULL;
1684   conf->forward_server_ip = NULL;
1685   conf->allowed_cookie_domain = NULL;
1686
1687   if (arg == NULL) {
1688     conf->dir                  = NULL;
1689   }
1690   else {
1691     conf->dir                  = apr_pcalloc(p, strlen(arg)+1);
1692     memset(conf->dir, 0, strlen(arg)+1);
1693     strcpy(conf->dir, arg);
1694   }
1695   conf->convrules   = apr_array_make(p, 2, sizeof(chxjconvrule_entry));
1696
1697   /* Default is copyleft */
1698   conf->image_copyright = NULL; 
1699
1700   return conf;
1701 }
1702
1703
1704 /*
1705  *  Merge per-directory CHXJ configurations
1706  */
1707 static void *
1708 chxj_merge_per_dir_config(apr_pool_t *p, void *basev, void *addv)
1709 {
1710   mod_chxj_config *base;
1711   mod_chxj_config *add;
1712   mod_chxj_config *mrg;
1713
1714   base = (mod_chxj_config *)basev;
1715   add  = (mod_chxj_config *)addv;
1716   mrg  = (mod_chxj_config *)apr_palloc(p, sizeof(mod_chxj_config));
1717
1718   mrg->device_data_file = NULL;
1719   mrg->devices          = NULL;
1720   mrg->emoji_data_file  = NULL;
1721   mrg->image            = CHXJ_IMG_NONE;
1722   mrg->image_cache_dir  = NULL;
1723   mrg->image_copyright  = NULL;
1724   mrg->image_cache_limit  = 0;
1725   mrg->emoji            = NULL;
1726   mrg->emoji_tail       = NULL;
1727   mrg->new_line_type    = NLTYPE_NIL;
1728   mrg->forward_url_base = NULL;
1729   mrg->forward_server_ip = NULL;
1730   mrg->allowed_cookie_domain = NULL;
1731
1732   mrg->dir = apr_pstrdup(p, add->dir);
1733
1734   if (! add->device_data_file) {
1735     mrg->devices = base->devices;
1736     mrg->device_data_file = apr_pstrdup(p, base->device_data_file);
1737   }
1738   else {
1739     mrg->devices = add->devices;
1740     mrg->device_data_file = apr_pstrdup(p, add->device_data_file);
1741   }
1742
1743   if (! add->emoji_data_file) {
1744     mrg->emoji = base->emoji;
1745     mrg->emoji_tail = base->emoji_tail;
1746     mrg->emoji_data_file = apr_pstrdup(p, base->emoji_data_file);
1747   }
1748   else {
1749     mrg->emoji = add->emoji;
1750     mrg->emoji_tail = add->emoji_tail;
1751     mrg->emoji_data_file = apr_pstrdup(p, add->emoji_data_file);
1752   }
1753
1754   if (add->image == CHXJ_IMG_NONE) {
1755     mrg->image = base->image;
1756   }
1757   else {
1758     mrg->image = add->image;
1759   }
1760
1761   if (strcasecmp(add->image_cache_dir ,DEFAULT_IMAGE_CACHE_DIR)==0) {
1762     mrg->image_cache_dir = apr_pstrdup(p, base->image_cache_dir);
1763   }
1764   else {
1765     mrg->image_cache_dir = apr_pstrdup(p, add->image_cache_dir);
1766   }
1767
1768   if (add->image_cache_limit) {
1769     mrg->image_cache_limit = add->image_cache_limit;
1770   }
1771   else {
1772     mrg->image_cache_limit = base->image_cache_limit;
1773   }
1774
1775   if (add->image_copyright) 
1776     mrg->image_copyright = apr_pstrdup(p, add->image_copyright);
1777   else
1778     mrg->image_copyright = apr_pstrdup(p, base->image_copyright);
1779
1780   if (add->server_side_encoding) {
1781     mrg->server_side_encoding = apr_pstrdup(p, add->server_side_encoding);
1782   }
1783   else 
1784   if (base->server_side_encoding) {
1785     mrg->server_side_encoding = apr_pstrdup(p, base->server_side_encoding);
1786   }
1787   else {
1788     mrg->server_side_encoding = apr_pstrdup(p, DEFAULT_SERVER_SIDE_ENCODING);
1789   }
1790
1791   mrg->convrules    = apr_array_append(p, add->convrules, base->convrules);
1792
1793   if (add->cookie_db_dir) {
1794     mrg->cookie_db_dir = apr_pstrdup(p, add->cookie_db_dir);
1795   }
1796   else
1797   if (base->cookie_db_dir) {
1798     mrg->cookie_db_dir = apr_pstrdup(p, base->cookie_db_dir);
1799   }
1800   else {
1801     mrg->cookie_db_dir = NULL;
1802   }
1803
1804   if (add->cookie_timeout) {
1805     mrg->cookie_timeout   = add->cookie_timeout;
1806   }
1807   else
1808   if (base->cookie_db_dir) {
1809     mrg->cookie_timeout   = base->cookie_timeout;
1810   }
1811   else {
1812     mrg->cookie_timeout   = 0;
1813   }
1814
1815 #if defined(USE_MYSQL_COOKIE)
1816   if (add->mysql.host) {
1817     mrg->mysql.host = apr_pstrdup(p, add->mysql.host);
1818   }
1819   else if (base->mysql.host) {
1820     mrg->mysql.host = apr_pstrdup(p, base->mysql.host);
1821   }
1822   else {
1823     mrg->mysql.host = NULL;
1824   }
1825   if (add->mysql.port) {
1826     mrg->mysql.port = add->mysql.port;
1827   }
1828   else if (base->mysql.port) {
1829     mrg->mysql.port = base->mysql.port;
1830   }
1831   else {
1832     mrg->mysql.port = 0;
1833   }
1834
1835   if (add->mysql.database) {
1836     mrg->mysql.database = apr_pstrdup(p, add->mysql.database);
1837   }
1838   else if (base->mysql.database) {
1839     mrg->mysql.database = apr_pstrdup(p, base->mysql.database);
1840   }
1841   else {
1842     mrg->mysql.database = NULL;
1843   }
1844
1845   if (add->mysql.username) {
1846     mrg->mysql.username = apr_pstrdup(p, add->mysql.username);
1847   }
1848   else if (base->mysql.username) {
1849     mrg->mysql.username = apr_pstrdup(p, base->mysql.username);
1850   }
1851   else {
1852     mrg->mysql.username = NULL;
1853   }
1854
1855   if (add->mysql.password) {
1856     mrg->mysql.password = apr_pstrdup(p, add->mysql.password);
1857   }
1858   else if (base->mysql.password) {
1859     mrg->mysql.password = apr_pstrdup(p, base->mysql.password);
1860   }
1861   else {
1862     mrg->mysql.password = NULL;
1863   }
1864
1865   if (add->mysql.tablename) {
1866     mrg->mysql.tablename = apr_pstrdup(p, add->mysql.tablename);
1867   }
1868   else if (base->mysql.tablename) {
1869     mrg->mysql.tablename = apr_pstrdup(p, base->mysql.tablename);
1870   }
1871   else {
1872     mrg->mysql.tablename = NULL;
1873   }
1874
1875   if (add->mysql.socket_path) {
1876     mrg->mysql.socket_path = apr_pstrdup(p, add->mysql.socket_path);
1877   }
1878   else if (base->mysql.socket_path) {
1879     mrg->mysql.socket_path = apr_pstrdup(p, base->mysql.socket_path);
1880   }
1881   else {
1882     mrg->mysql.socket_path = NULL;
1883   }
1884
1885   if (add->mysql.charset) {
1886     mrg->mysql.charset = apr_pstrdup(p, add->mysql.charset);
1887   }
1888   else if (base->mysql.charset) {
1889     mrg->mysql.charset = apr_pstrdup(p, base->mysql.charset);
1890   }
1891   else {
1892     mrg->mysql.charset = NULL;
1893   }
1894 #endif
1895 #if defined(USE_MEMCACHE_COOKIE)
1896   if (add->memcache.host) {
1897     mrg->memcache.host = apr_pstrdup(p, add->memcache.host);
1898   }
1899   else if (base->memcache.host) {
1900     mrg->memcache.host = apr_pstrdup(p, base->memcache.host);
1901   }
1902   else {
1903     mrg->memcache.host = NULL;
1904   }
1905   if (add->memcache.port) {
1906     mrg->memcache.port = add->memcache.port;
1907   }
1908   else if (base->memcache.port) {
1909     mrg->memcache.port = base->memcache.port;
1910   }
1911   else {
1912     mrg->memcache.port = 0;
1913   }
1914 #endif
1915   if (add->cookie_store_type) {
1916     mrg->cookie_store_type = add->cookie_store_type;
1917   }
1918   else if (base->cookie_store_type) {
1919     mrg->cookie_store_type = base->cookie_store_type;
1920   }
1921   else {
1922     mrg->cookie_store_type = COOKIE_STORE_TYPE_NONE;
1923   }
1924   if (add->cookie_lazy_mode) {
1925     mrg->cookie_lazy_mode = add->cookie_lazy_mode;
1926   }
1927   else if (base->cookie_lazy_mode) {
1928     mrg->cookie_lazy_mode = base->cookie_lazy_mode;
1929   }
1930   else {
1931     mrg->cookie_lazy_mode = 0;
1932   }
1933   if (add->new_line_type) {
1934     mrg->new_line_type = add->new_line_type;
1935   }
1936   else if (base->new_line_type) {
1937     mrg->new_line_type = base->new_line_type;
1938   }
1939   else {
1940     mrg->new_line_type = NLTYPE_NIL;
1941   }
1942
1943   if (add->forward_url_base) {
1944     mrg->forward_url_base = add->forward_url_base;
1945   }
1946   else if (base->forward_url_base) {
1947     mrg->forward_url_base = base->forward_url_base;
1948   }
1949
1950   if (add->allowed_cookie_domain) {
1951     mrg->allowed_cookie_domain = add->allowed_cookie_domain;
1952   }
1953   else {
1954     mrg->allowed_cookie_domain = base->allowed_cookie_domain;
1955   }
1956   return mrg;
1957 }
1958
1959
1960 static int
1961 chxj_command_parse_take5(
1962   const char *arg, 
1963   char       **prm1, 
1964   char       **prm2, 
1965   char       **prm3, 
1966   char       **prm4, 
1967   char       **prm5)
1968 {
1969   int  isquoted;
1970   char *strp;
1971
1972   strp = (char *)arg;
1973
1974   for (;*strp == ' '||*strp == '\t'; strp++) ;
1975
1976   isquoted = 0; 
1977   if (*strp == '"') { 
1978     isquoted = 1;
1979     strp++;
1980   }
1981
1982   *prm1 = strp;
1983
1984   for (; *strp != '\0'; strp++) {
1985     if ((isquoted && (*strp == ' ' || *strp == '\t'))
1986     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
1987       strp++;
1988       continue;
1989     }
1990
1991     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
1992     ||  (isquoted  && *strp == '"'))
1993       break;
1994   }
1995
1996   if (! *strp) {
1997     *prm2 = strp;
1998     *prm3 = strp;
1999     *prm4 = strp;
2000     *prm5 = strp;
2001     return 1;
2002   }
2003
2004   *strp++ = '\0';
2005
2006   for (;*strp == ' '||*strp == '\t'; strp++) ;
2007
2008   isquoted = 0; 
2009   if (*strp == '"') { 
2010     isquoted = 1;
2011     strp++;
2012   }
2013
2014   *prm2 = strp;
2015   for (; *strp != '\0'; strp++) {
2016     if ((isquoted && (*strp == ' ' || *strp == '\t'))
2017     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
2018       strp++;
2019       continue;
2020     }
2021
2022     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
2023     ||  (isquoted  && *strp == '"'))
2024       break;
2025   }
2026
2027   if (! *strp) {
2028     *prm3 = strp;
2029     *prm4 = strp;
2030     *prm5 = strp;
2031     return 0;
2032   }
2033
2034   *strp++ = '\0';
2035
2036   for (;*strp == ' '||*strp == '\t'; strp++);
2037
2038   isquoted = 0; 
2039   if (*strp == '"') { 
2040     isquoted = 1;
2041     strp++;
2042   }
2043   *prm3 = strp;
2044   for (; *strp != '\0'; strp++) {
2045     if ((isquoted && (*strp == ' ' || *strp == '\t'))
2046     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
2047       strp++;
2048       continue;
2049     }
2050
2051     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
2052     ||  (isquoted  && *strp == '"'))
2053       break;
2054   }
2055
2056   if (! *strp) {
2057     *prm4 = strp;
2058     *prm5 = strp;
2059     return 0;
2060   }
2061
2062   *strp++ = '\0';
2063
2064   for (;*strp == ' '||*strp == '\t'; strp++);
2065
2066   isquoted = 0; 
2067   if (*strp == '"') { 
2068     isquoted = 1;
2069     strp++;
2070   }
2071   *prm4 = strp;
2072   for (; *strp != '\0'; strp++) {
2073     if ((isquoted && (*strp == ' ' || *strp == '\t'))
2074     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
2075       strp++;
2076       continue;
2077     }
2078
2079     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
2080     ||  (isquoted  && *strp == '"'))
2081       break;
2082   }
2083
2084   if (! *strp) {
2085     *prm5 = strp;
2086     return 0;
2087   }
2088
2089   *strp++ = '\0';
2090
2091   for (;*strp == ' '||*strp == '\t'; strp++);
2092
2093   isquoted = 0; 
2094   if (*strp == '"') { 
2095     isquoted = 1;
2096     strp++;
2097   }
2098   *prm5 = strp;
2099   for (; *strp != '\0'; strp++) {
2100     if ((isquoted && (*strp == ' ' || *strp == '\t'))
2101     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
2102       strp++;
2103       continue;
2104     }
2105
2106     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
2107     ||  (isquoted  && *strp == '"'))
2108       break;
2109   }
2110   *strp = '\0';
2111
2112   return 0;
2113 }
2114
2115
2116 /**
2117  * The device definition file is loaded. 
2118  *
2119  * @param arg     [i]   The name of the device definition file is specified.
2120  * @param mconfig [i/o] The pointer to a set structure is specified. 
2121  * @param parms   [i]   
2122  */
2123 static const char * 
2124 cmd_load_device_data(cmd_parms *parms, void *mconfig, const char *arg) 
2125 {
2126   mod_chxj_config  *conf;
2127   Doc              doc;
2128
2129   doc.r = NULL;
2130
2131   if (strlen(arg) > 256) 
2132     return "mod_chxj: device data filename too long.";
2133
2134   conf = (mod_chxj_config *)mconfig;
2135   conf->device_data_file = apr_pstrdup(parms->pool, arg);
2136
2137   qs_init_malloc(&doc);
2138   qs_init_root_node(&doc);
2139
2140   qs_parse_file((Doc *)&doc, (const char *)arg);
2141   chxj_load_device_data(&doc,parms->pool, conf);
2142   qs_all_free(&doc, QX_LOGMARK);
2143
2144   return NULL;
2145 }
2146
2147
2148 /**
2149  * Device definition information is loaded. 
2150  *
2151  * @param parms 
2152  * @param arg     [i]   The name of the device definition file is specified. 
2153  * @param mconfig [i/o] The pointer to a set structure is specified. 
2154  * @return 
2155  */
2156 static const char * 
2157 cmd_load_emoji_data(cmd_parms *parms, void *mconfig, const char *arg) 
2158 {
2159   mod_chxj_config *conf;
2160   char            *rtn;
2161   Doc              doc;
2162
2163   doc.r = NULL;
2164
2165
2166   if (strlen(arg) > 256) 
2167     return "mod_chxj: emoji data filename too long.";
2168
2169   conf = (mod_chxj_config *)mconfig;
2170   conf->emoji_data_file = apr_pstrdup(parms->pool, arg);
2171   qs_init_malloc(&doc);
2172   qs_init_root_node(&doc);
2173
2174   qs_parse_file((Doc *)&doc, (const char *)arg);
2175
2176   rtn = chxj_load_emoji_data(&doc,parms->pool, conf);
2177
2178   qs_all_free(&doc, QX_LOGMARK);
2179
2180
2181   return rtn;
2182 }
2183
2184
2185 static const char * 
2186 cmd_set_image_engine(cmd_parms * UNUSED(parms), void *mconfig, const char *arg) 
2187 {
2188   mod_chxj_config *conf;
2189   Doc              doc;
2190
2191   doc.r = NULL;
2192
2193   if (strlen(arg) > 256) 
2194     return "image uri is too long.";
2195
2196   conf = (mod_chxj_config*)mconfig;
2197   if (strcasecmp("ON", arg) == 0) {
2198     conf->image = CHXJ_IMG_ON;
2199   }
2200   else {
2201     conf->image = CHXJ_IMG_OFF;
2202   }
2203
2204   return NULL;
2205 }
2206
2207
2208 static const char * 
2209 cmd_set_image_cache_dir(cmd_parms *parms, void *mconfig, const char *arg) 
2210 {
2211   mod_chxj_config *conf;
2212   Doc              doc;
2213
2214   doc.r = NULL;
2215
2216   if (strlen(arg) > 256) 
2217     return "cache dir name is too long.";
2218
2219   conf = (mod_chxj_config *)mconfig;
2220   conf->image_cache_dir = apr_pstrdup(parms->pool, arg);
2221
2222   return NULL;
2223 }
2224
2225
2226 static const char * 
2227 cmd_set_image_cache_limit(cmd_parms *parms, void *mconfig, const char *arg) 
2228 {
2229   mod_chxj_config *conf;
2230   Doc              doc;
2231
2232   doc.r = NULL;
2233
2234   if (strlen(arg) > IMAGE_CACHE_LIMIT_FMT_LEN) 
2235     return "cache size is too long.";
2236
2237   conf = (mod_chxj_config *)mconfig;
2238   errno = 0;
2239   /* 
2240    * I use strtol function because strtoul is not portable function. 
2241    */
2242   conf->image_cache_limit = (unsigned long)strtol(arg, NULL, 10);
2243   switch (errno) {
2244   case EINVAL:
2245     return apr_psprintf(parms->pool, "ChxjImageCacheLimit invalid value [%s] errno:[%d]", arg, errno);
2246   case ERANGE:
2247     return apr_psprintf(parms->pool, "ChxjImageCacheLimit Out of range [%s] errno:[%d]", arg, errno);
2248   default:
2249     break;
2250   }
2251   return NULL;
2252 }
2253
2254
2255 static const char * 
2256 cmd_set_image_copyright(cmd_parms *parms, void *mconfig, const char *arg) 
2257 {
2258   mod_chxj_config *conf;
2259   Doc              doc;
2260
2261   doc.r = NULL;
2262
2263   if (strlen(arg) > 256) 
2264     return "Copyright Flag is too long.";
2265
2266   conf = (mod_chxj_config *)mconfig;
2267   conf->image_copyright = apr_pstrdup(parms->pool, arg);
2268
2269   return NULL;
2270 }
2271
2272
2273 static const char *
2274 cmd_convert_rule(cmd_parms *cmd, void *mconfig, const char *arg)
2275 {
2276   int                 mode;
2277   ap_regex_t          *regexp;
2278   mod_chxj_config     *dconf;
2279   chxjconvrule_entry  *newrule;
2280   char                *prm1;
2281   char                *prm2;
2282   char                *prm3;
2283   char                *prm4;
2284   char                *prm5;
2285   char                *pstate;
2286   char                *action;
2287   char                *pp;
2288
2289   dconf = (mod_chxj_config *)mconfig;
2290
2291   if (strlen(arg) > 4096) 
2292     return "mod_chxj: ChxjConvertRule: is too long.";
2293
2294   dconf = (mod_chxj_config *)mconfig;
2295   if (dconf->convrules == NULL)
2296     dconf->convrules   = apr_array_make(cmd->pool, 
2297                                         2, 
2298                                         sizeof(chxjconvrule_entry));
2299
2300   newrule = apr_array_push(dconf->convrules);
2301
2302   newrule->flags  = 0;
2303   newrule->action = 0;
2304
2305   if (chxj_command_parse_take5(arg, &prm1, &prm2, &prm3, &prm4, &prm5))
2306     return "ChxjConvertRule: bad argument line";
2307
2308   newrule->pattern = apr_pstrdup(cmd->pool, prm1);
2309
2310   /* Parse action */
2311   for (;;) {
2312     if ((action = apr_strtok(prm2, ",", &pstate)) == NULL)
2313       break;
2314     prm2 = NULL;
2315     switch(*action) {
2316     case 'e':
2317     case 'E':
2318       if (strcasecmp(CONVRULE_ENGINE_ON_CMD, action) == 0) {
2319         newrule->action |= CONVRULE_ENGINE_ON_BIT;
2320       }
2321       else
2322       if (strcasecmp(CONVRULE_ENGINE_OFF_CMD, action) == 0) {
2323         newrule->action |= CONVRULE_ENGINE_OFF_BIT;
2324       }
2325       else
2326       if (strcasecmp(CONVRULE_EMOJI_ONLY_CMD, action) == 0) {
2327         newrule->action |= CONVRULE_EMOJI_ONLY_BIT;
2328       }
2329       else
2330       if (strcasecmp(CONVRULE_ENVINFO_ONLY_CMD, action) == 0) {
2331         newrule->action |= CONVRULE_ENVINFO_ONLY_BIT;
2332       }
2333       break;
2334
2335     case 'C':
2336     case 'c':
2337       if (strcasecmp(CONVRULE_COOKIE_ON_CMD, action) == 0) {
2338         newrule->action |= CONVRULE_COOKIE_ON_BIT;
2339       }
2340       break;
2341
2342     case 'J':
2343     case 'j':
2344       if (strcasecmp(CONVRULE_JRCONV_OFF_CMD, action) == 0) {
2345         newrule->action |= CONVRULE_JRCONV_OFF_BIT;
2346       }
2347       break;
2348
2349     case 'N':
2350     case 'n':
2351       if (strcasecmp(CONVRULE_NOCACHE_ON_CMD, action) == 0) {
2352         newrule->action |= CONVRULE_NOCACHE_ON_BIT;
2353       }
2354       break;
2355
2356     case 'Q':
2357     case 'q':
2358       if (strcasecmp(CONVRULE_QSCONV_OFF_CMD, action) == 0) {
2359         newrule->action |= CONVRULE_QSCONV_OFF_BIT;
2360       }
2361       break;
2362
2363     case 'Z':
2364     case 'z':
2365       if (strcasecmp(CONVRULE_Z2H_ON_CMD, action) == 0) {
2366         newrule->action |= CONVRULE_Z2H_ON_BIT;
2367       }
2368       else
2369       if (strcasecmp(CONVRULE_Z2H_OFF_CMD, action) == 0) {
2370         newrule->action |= CONVRULE_Z2H_OFF_BIT;
2371       }
2372       else
2373       if (strcasecmp(CONVRULE_Z2H_ALPHA_ON_CMD, action) == 0) {
2374         newrule->action |= CONVRULE_Z2H_ALPHA_ON_BIT;
2375       }
2376       else
2377       if (strcasecmp(CONVRULE_Z2H_ALPHA_OFF_CMD, action) == 0) {
2378         newrule->action |= CONVRULE_Z2H_ALPHA_OFF_BIT;
2379       }
2380       else
2381       if (strcasecmp(CONVRULE_Z2H_NUM_ON_CMD, action) == 0) {
2382         newrule->action |= CONVRULE_Z2H_NUM_ON_BIT;
2383       }
2384       else
2385       if (strcasecmp(CONVRULE_Z2H_NUM_OFF_CMD, action) == 0) {
2386         newrule->action |= CONVRULE_Z2H_NUM_OFF_BIT;
2387       }
2388       else
2389       if (strcasecmp(CONVRULE_Z2H_ALL_ON_CMD, action) == 0) {
2390         newrule->action |= CONVRULE_Z2H_ON_BIT | CONVRULE_Z2H_ALPHA_ON_BIT | CONVRULE_Z2H_NUM_ON_BIT;
2391       }
2392       else
2393       if (strcasecmp(CONVRULE_Z2H_NUM_OFF_CMD, action) == 0) {
2394         newrule->action |= CONVRULE_Z2H_OFF_BIT | CONVRULE_Z2H_ALPHA_OFF_BIT | CONVRULE_Z2H_NUM_OFF_BIT;
2395       }
2396       break;
2397
2398     default:
2399       break;
2400     }
2401   }
2402   
2403   pp = prm1;
2404   if (*pp == '!') {
2405     newrule->flags |= CONVRULE_FLAG_NOTMATCH;
2406     pp++;
2407   }
2408
2409   mode = AP_REG_EXTENDED;
2410   if ((regexp = ap_pregcomp((apr_pool_t *)cmd->pool, (const char *)pp, mode)) == NULL)
2411     return "RewriteRule: cannot compile regular expression ";
2412
2413   newrule->regexp = regexp;
2414   if (*prm3)
2415     newrule->encoding = apr_pstrdup(cmd->pool, prm3);
2416   else
2417     newrule->encoding = apr_pstrdup(cmd->pool, "none");
2418
2419   newrule->pc_flag = CONVRULE_PC_FLAG_OFF_BIT;
2420   if (*prm4)
2421     if (strcasecmp(CONVRULE_PC_FLAG_ON_CMD, prm4) == 0)
2422       newrule->pc_flag = CONVRULE_PC_FLAG_ON_BIT;
2423
2424   newrule->user_agent = NULL;
2425   if (*prm5)
2426     newrule->user_agent = apr_pstrdup(cmd->pool, prm5);
2427     
2428   return NULL;
2429 }
2430
2431
2432 static const char *
2433 cmd_set_cookie_dir(
2434   cmd_parms   *cmd, 
2435   void        *mconfig, 
2436   const char  *arg)
2437 {
2438   mod_chxj_config *dconf;
2439
2440
2441   if (strlen(arg) > 4096) 
2442     return "mod_chxj: ChxjCookieDir is too long.";
2443
2444   dconf = (mod_chxj_config *)mconfig;
2445
2446   dconf->cookie_db_dir = apr_pstrdup(cmd->pool, arg);
2447
2448   return NULL;
2449 }
2450
2451
2452 static const char *
2453 cmd_set_cookie_timeout(
2454   cmd_parms   *UNUSED(cmd), 
2455   void        *mconfig, 
2456   const char  *arg)
2457 {
2458   mod_chxj_config *dconf;
2459
2460   if (strlen(arg) > 4096) 
2461     return "mod_chxj: ChxjCookieTimeout is too long.";
2462
2463   if (chxj_chk_numeric(arg) != 0)
2464     return "mod_chxj: ChxjCookieTimeout is not numeric.";
2465
2466   dconf = (mod_chxj_config *)mconfig;
2467
2468   dconf->cookie_timeout = atoi(arg);
2469
2470   return NULL;
2471 }
2472
2473
2474 #if defined(USE_MYSQL_COOKIE)
2475 static const char *
2476 cmd_set_cookie_mysql_database(
2477   cmd_parms   *cmd, 
2478   void        *mconfig, 
2479   const char  *arg)
2480 {
2481   mod_chxj_config  *dconf;
2482
2483   if (strlen(arg) > 255) 
2484     return "mod_chxj: ChxjCookieMysqlDatabase is too long.";
2485
2486   dconf = (mod_chxj_config *)mconfig;
2487
2488   dconf->mysql.database = apr_pstrdup(cmd->pool, arg);
2489
2490   return NULL;
2491 }
2492
2493
2494 static const char *
2495 cmd_set_cookie_mysql_username(
2496   cmd_parms   *cmd, 
2497   void        *mconfig, 
2498   const char  *arg)
2499 {
2500   mod_chxj_config  *dconf;
2501
2502   if (strlen(arg) > 255) 
2503     return "mod_chxj: ChxjCookieMysqlUsername is too long.";
2504
2505   dconf = (mod_chxj_config *)mconfig;
2506
2507   dconf->mysql.username = apr_pstrdup(cmd->pool, arg);
2508
2509   return NULL;
2510 }
2511
2512
2513 static const char *
2514 cmd_set_cookie_mysql_password(
2515   cmd_parms   *cmd, 
2516   void        *mconfig, 
2517   const char  *arg)
2518 {
2519   mod_chxj_config  *dconf;
2520
2521   if (strlen(arg) > 255) 
2522     return "mod_chxj: ChxjCookieMysqlPassword is too long.";
2523
2524   dconf = (mod_chxj_config *)mconfig;
2525
2526   dconf->mysql.password = apr_pstrdup(cmd->pool, arg);
2527
2528   return NULL;
2529 }
2530
2531
2532 static const char *
2533 cmd_set_cookie_mysql_table_name(
2534   cmd_parms   *cmd, 
2535   void        *mconfig, 
2536   const char  *arg)
2537 {
2538   mod_chxj_config  *dconf;
2539
2540   if (strlen(arg) > 255) 
2541     return "mod_chxj: ChxjCookieMysqlTableName is too long.";
2542
2543   dconf = (mod_chxj_config *)mconfig;
2544
2545   dconf->mysql.tablename = apr_pstrdup(cmd->pool, arg);
2546
2547   return NULL;
2548 }
2549
2550 static const char *
2551 cmd_set_cookie_mysql_port(
2552   cmd_parms   *UNUSED(cmd), 
2553   void        *mconfig, 
2554   const char  *arg)
2555 {
2556   mod_chxj_config *dconf;
2557
2558   if (strlen(arg) > 255) 
2559     return "mod_chxj: ChxjCookieMysqlPort is too long.";
2560
2561   dconf = (mod_chxj_config *)mconfig;
2562
2563   if (chxj_chk_numeric(arg) != 0)
2564     return "mod_chxj: ChxjCookieMysqlPort is not numeric.";
2565
2566   dconf = (mod_chxj_config *)mconfig;
2567
2568   dconf->mysql.port = chxj_atoi(arg);
2569
2570   return NULL;
2571 }
2572
2573
2574 static const char *
2575 cmd_set_cookie_mysql_host(
2576   cmd_parms   *cmd, 
2577   void        *mconfig, 
2578   const char  *arg)
2579 {
2580   mod_chxj_config  *dconf;
2581
2582   if (strlen(arg) > 255) 
2583     return "mod_chxj: ChxjCookieMysqlHost is too long.";
2584
2585   dconf = (mod_chxj_config *)mconfig;
2586
2587   dconf->mysql.host = apr_pstrdup(cmd->pool, arg);
2588
2589   return NULL;
2590 }
2591
2592
2593 static const char *
2594 cmd_set_cookie_mysql_socket_path(
2595   cmd_parms   *cmd, 
2596   void        *mconfig, 
2597   const char  *arg)
2598 {
2599   mod_chxj_config  *dconf;
2600
2601   if (strlen(arg) > 4096) 
2602     return "mod_chxj: ChxjCookieMysqlSocketPath is too long.";
2603
2604   dconf = (mod_chxj_config *)mconfig;
2605
2606   dconf->mysql.socket_path = apr_pstrdup(cmd->pool, arg);
2607
2608   return NULL;
2609 }
2610
2611
2612 static const char *
2613 cmd_set_cookie_mysql_charset(
2614   cmd_parms   *cmd, 
2615   void        *mconfig, 
2616   const char  *arg)
2617 {
2618   mod_chxj_config  *dconf;
2619
2620   if (strlen(arg) > 255) 
2621     return "mod_chxj: ChxjCookieMysqlCharset is too long.";
2622
2623   dconf = (mod_chxj_config *)mconfig;
2624
2625   dconf->mysql.charset = apr_pstrdup(cmd->pool, arg);
2626
2627   return NULL;
2628 }
2629 #endif
2630 #if defined(USE_MEMCACHE_COOKIE)
2631 static const char *
2632 cmd_set_cookie_memcache_port(
2633   cmd_parms   *UNUSED(cmd), 
2634   void        *mconfig, 
2635   const char  *arg)
2636 {
2637   mod_chxj_config *dconf;
2638
2639   if (strlen(arg) > 255) 
2640     return "mod_chxj: ChxjCookieMemcachePort is too long.";
2641
2642   dconf = (mod_chxj_config *)mconfig;
2643
2644   if (chxj_chk_numeric(arg) != 0)
2645     return "mod_chxj: ChxjCookieMemcachePort is not numeric.";
2646
2647   dconf = (mod_chxj_config *)mconfig;
2648
2649   dconf->memcache.port = (apr_port_t)chxj_atoi(arg);
2650
2651   return NULL;
2652 }
2653
2654
2655 static const char *
2656 cmd_set_cookie_memcache_host(
2657   cmd_parms   *cmd, 
2658   void        *mconfig, 
2659   const char  *arg)
2660 {
2661   mod_chxj_config  *dconf;
2662
2663   if (strlen(arg) > 255) 
2664     return "mod_chxj: ChxjCookieMemcacheHost is too long.";
2665
2666   dconf = (mod_chxj_config *)mconfig;
2667
2668   dconf->memcache.host = apr_pstrdup(cmd->pool, arg);
2669
2670   return NULL;
2671 }
2672 #endif
2673
2674 static const char *
2675 cmd_set_cookie_lazy_mode(
2676   cmd_parms   *UNUSED(cmd), 
2677   void        *mconfig, 
2678   const char  *arg)
2679 {
2680   mod_chxj_config  *dconf;
2681
2682   if (strlen(arg) > 255) 
2683     return "mod_chxj: ChxjCookieLazyMode is too long.";
2684
2685   dconf = (mod_chxj_config *)mconfig;
2686
2687   if (strcasecmp("TRUE",arg) == 0) {
2688     dconf->cookie_lazy_mode = COOKIE_LAZY_ON;
2689   }
2690   else {
2691     dconf->cookie_lazy_mode = COOKIE_LAZY_OFF;
2692   }
2693
2694   return NULL;
2695 }
2696
2697 static const char *
2698 cmd_set_cookie_store_type(
2699   cmd_parms   *UNUSED(cmd), 
2700   void        *mconfig, 
2701   const char  *arg)
2702 {
2703   mod_chxj_config  *dconf;
2704
2705   if (strlen(arg) > 255) 
2706     return "mod_chxj: ChxjCookieStoreType is too long.";
2707
2708   dconf = (mod_chxj_config *)mconfig;
2709
2710   if (strcasecmp(CHXJ_COOKIE_STORE_TYPE_DBM, arg) == 0) {
2711     dconf->cookie_store_type = COOKIE_STORE_TYPE_DBM;
2712   }
2713   else if (strcasecmp(CHXJ_COOKIE_STORE_TYPE_MYSQL, arg) == 0) {
2714     dconf->cookie_store_type = COOKIE_STORE_TYPE_MYSQL;
2715   }
2716   else if (strcasecmp(CHXJ_COOKIE_STORE_TYPE_MEMCACHE, arg) == 0) {
2717     dconf->cookie_store_type = COOKIE_STORE_TYPE_MEMCACHE;
2718   }
2719   else {
2720     dconf->cookie_store_type = COOKIE_STORE_TYPE_NONE;
2721   }
2722
2723   return NULL;
2724 }
2725
2726 static const char *
2727 cmd_set_forward_url_base(
2728   cmd_parms   *cmd,
2729   void        *mconfig,
2730   const char  *arg)
2731 {
2732  mod_chxj_config *dconf;
2733
2734   if (strlen(arg) > 255)
2735     return "mod_chxj: ChxjForwardUrlBase is too long.";
2736
2737   dconf = (mod_chxj_config *)mconfig;
2738
2739   dconf->forward_url_base = apr_pstrdup(cmd->pool, arg);
2740
2741   return NULL;
2742 }
2743
2744 static const char *
2745 cmd_set_forward_server_ip(
2746   cmd_parms   *cmd,
2747   void        *mconfig,
2748   const char  *arg)
2749 {
2750   mod_chxj_config *dconf;
2751
2752   if (strlen(arg) > 255)
2753     return "mod_chxj: ChxjForwardServerIp is too long.";
2754
2755   dconf = (mod_chxj_config *)mconfig;
2756
2757   dconf->forward_server_ip = apr_pstrdup(cmd->pool, arg);
2758
2759   return NULL;
2760 }
2761
2762 static const char *
2763 cmd_allowed_cookie_domain(
2764   cmd_parms   *cmd,
2765   void        *mconfig,
2766   const char  *arg)
2767 {
2768   mod_chxj_config *dconf;
2769
2770   if (strlen(arg) > 255)
2771     return "mod_chxj: ChxjAllowedCookieDomain is too long.";
2772
2773   dconf = (mod_chxj_config *)mconfig;
2774
2775   dconf->allowed_cookie_domain = apr_pstrdup(cmd->pool, arg);
2776
2777   return NULL;
2778 }
2779
2780 static const char *
2781 cmd_set_new_line_type(
2782   cmd_parms   *UNUSED(cmd), 
2783   void        *mconfig, 
2784   const char  *arg)
2785 {
2786   mod_chxj_config  *dconf;
2787   if (strlen(arg) > 255)
2788     return "mod_chxj: ChxjNewLineType is too long.";
2789
2790   dconf = (mod_chxj_config *)mconfig;
2791
2792   if (strcasecmp(CHXJ_NEW_LINE_TYPE_CRLF, arg) == 0) {
2793     dconf->new_line_type = NLTYPE_CRLF;
2794   }
2795   else if (strcasecmp(CHXJ_NEW_LINE_TYPE_LF, arg) == 0) {
2796     dconf->new_line_type = NLTYPE_LF;
2797   }
2798   else if (strcasecmp(CHXJ_NEW_LINE_TYPE_CR, arg) == 0) {
2799     dconf->new_line_type = NLTYPE_CR;
2800   }
2801   else if (strcasecmp(CHXJ_NEW_LINE_TYPE_NONE, arg) == 0) {
2802     dconf->new_line_type = NLTYPE_NONE;
2803   }
2804   else {
2805     return "mod_chxj: invalid value (ChxjNewLineType)";
2806   }
2807   return NULL;
2808 }
2809
2810
2811 static const command_rec cmds[] = {
2812   AP_INIT_TAKE1(
2813     "ChxjLoadDeviceData",
2814     cmd_load_device_data,
2815     NULL,
2816     OR_ALL,
2817     "Load Device Data"),
2818   AP_INIT_TAKE1(
2819     "ChxjLoadEmojiData",
2820     cmd_load_emoji_data,
2821     NULL,
2822     OR_ALL,
2823     "Load Emoji Data"),
2824   AP_INIT_TAKE1(
2825     "ChxjImageEngine",
2826     cmd_set_image_engine,
2827     NULL,
2828     OR_ALL,
2829     "Convert Target URI"),
2830   AP_INIT_TAKE1(
2831     "ChxjImageCacheDir",
2832     cmd_set_image_cache_dir,
2833     NULL,
2834     OR_ALL,
2835     "Image Cache Directory"),
2836   AP_INIT_TAKE1(
2837     "ChxjImageCacheLimit",
2838     cmd_set_image_cache_limit,
2839     NULL,
2840     OR_ALL,
2841     "Image Cache Limit"),
2842   AP_INIT_TAKE1(
2843     "ChxjImageCopyright",
2844     cmd_set_image_copyright,
2845     NULL,
2846     OR_ALL,
2847     "Copyright Flag"),
2848   AP_INIT_RAW_ARGS(
2849     "ChxjConvertRule",
2850     cmd_convert_rule,
2851     NULL, 
2852     OR_FILEINFO,
2853     "an URL-applied regexp-pattern and a substitution URL"),
2854   AP_INIT_TAKE1(
2855     "ChxjCookieDir",
2856     cmd_set_cookie_dir,
2857     NULL,
2858     OR_ALL,
2859     "save cookie.db directory."),
2860   AP_INIT_TAKE1(
2861     "ChxjCookieTimeout",
2862     cmd_set_cookie_timeout,
2863     NULL,
2864     OR_ALL,
2865     "The compulsion time-out time of the cookie is specified. "),
2866   AP_INIT_TAKE1(
2867     "ChxjCookieStoreType",
2868     cmd_set_cookie_store_type,
2869     NULL,
2870     OR_ALL,
2871     "It specifies preserving of the cookie ahead. (DBM/MYSQL/MEMCACHE)"),
2872   AP_INIT_TAKE1(
2873     "ChxjCookieLazyMode",
2874     cmd_set_cookie_lazy_mode,
2875     NULL,
2876     OR_ALL,
2877     "OneTimeID is negligently done. (TRUE/FALSE)"),
2878 #if defined(USE_MYSQL_COOKIE)
2879   AP_INIT_TAKE1(
2880     "ChxjCookieMysqlHost",
2881     cmd_set_cookie_mysql_host,
2882     NULL,
2883     OR_ALL,
2884     "The MySQL database host used by saving Cookie"),
2885   AP_INIT_TAKE1(
2886     "ChxjCookieMysqlPort",
2887     cmd_set_cookie_mysql_port,
2888     NULL,
2889     OR_ALL,
2890     "The MySQL database port used by saving Cookie"),
2891   AP_INIT_TAKE1(
2892     "ChxjCookieMysqlDatabase",
2893     cmd_set_cookie_mysql_database,
2894     NULL,
2895     OR_ALL,
2896     "The MySQL database name used by saving Cookie"),
2897   AP_INIT_TAKE1(
2898     "ChxjCookieMysqlUsername",
2899     cmd_set_cookie_mysql_username,
2900     NULL,
2901     OR_ALL,
2902     "The MySQL username used by saving Cookie"),
2903   AP_INIT_TAKE1(
2904     "ChxjCookieMysqlPassword",
2905     cmd_set_cookie_mysql_password,
2906     NULL,
2907     OR_ALL,
2908     "The MySQL password used by saving Cookie"),
2909   AP_INIT_TAKE1(
2910     "ChxjCookieMysqlTableName",
2911     cmd_set_cookie_mysql_table_name,
2912     NULL,
2913     OR_ALL,
2914     "The MySQL table name used by saving Cookie"),
2915   AP_INIT_TAKE1(
2916     "ChxjCookieMysqlSocketPath",
2917     cmd_set_cookie_mysql_socket_path,
2918     NULL,
2919     OR_ALL,
2920     "The MySQL socket path used by saving Cookie"),
2921   AP_INIT_TAKE1(
2922     "ChxjCookieMysqlCharset",
2923     cmd_set_cookie_mysql_charset,
2924     NULL,
2925     OR_ALL,
2926     "The MySQL charset used by saving Cookie"),
2927 #endif
2928 #if defined(USE_MEMCACHE_COOKIE)
2929   AP_INIT_TAKE1(
2930     "ChxjCookieMemcacheHost",
2931     cmd_set_cookie_memcache_host,
2932     NULL,
2933     OR_ALL,
2934     "The Memcached host used by saving Cookie"),
2935   AP_INIT_TAKE1(
2936     "ChxjCookieMemcachePort",
2937     cmd_set_cookie_memcache_port,
2938     NULL,
2939     OR_ALL,
2940     "The Memcached port used by saving Cookie"),
2941 #endif
2942   AP_INIT_TAKE1(
2943     "ChxjNewLineType",
2944     cmd_set_new_line_type,
2945     NULL,
2946     OR_ALL,
2947     "HTML new line type (NONE|CRLF|LF|CR). default is CRLF"),
2948   AP_INIT_TAKE1(
2949     "ChxjForwardUrlBase",
2950     cmd_set_forward_url_base,
2951     NULL,
2952     OR_ALL,
2953     "The forward url base(default: {request protocol}://{this server}:{this server port}"),
2954   AP_INIT_TAKE1(
2955     "ChxjForwardServerIp",
2956     cmd_set_forward_server_ip,
2957     NULL,
2958     OR_ALL,
2959     "The forward server ip(default: this server ip)"),
2960   AP_INIT_TAKE1(
2961     "ChxjAllowedCookieDomain",
2962     cmd_allowed_cookie_domain,
2963     NULL,
2964     OR_ALL,
2965     "Domain that permits parameter addition for cookie besides hostname.(Default:hostname Only)"),
2966   {NULL}
2967 };
2968
2969
2970 /*----------------------------------------------------------------------------*/
2971 /* Dispatch list for API hooks                                                */
2972 /*----------------------------------------------------------------------------*/
2973 module AP_MODULE_DECLARE_DATA chxj_module = {
2974   STANDARD20_MODULE_STUFF, 
2975   chxj_create_per_dir_config,          /* create per-dir    config structures */
2976   chxj_merge_per_dir_config,           /* merge  per-dir    config structures */
2977   chxj_config_server_create,           /* create per-server config structures */
2978   NULL,                                /* merge  per-server config structures */
2979   cmds,                                /* table of config file commands       */
2980   chxj_register_hooks                  /* register hooks                      */
2981 };
2982 /*
2983  * vim:ts=2 et
2984  */