OSDN Git Service

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