HTMLParserEvent, attributes takes quoting sep
[metaproxy-moved-to-github.git] / src / filter_http_rewrite.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2013 Index Data
3
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #include "config.hpp"
20 #include <metaproxy/filter.hpp>
21 #include <metaproxy/package.hpp>
22 #include <metaproxy/util.hpp>
23 #include "filter_http_rewrite.hpp"
24 #include "html_parser.hpp"
25
26 #include <yaz/zgdu.h>
27 #include <yaz/log.h>
28
29 #include <stack>
30 #include <boost/regex.hpp>
31 #include <boost/lexical_cast.hpp>
32 #include <boost/algorithm/string.hpp>
33
34 #include <map>
35
36 namespace mp = metaproxy_1;
37 namespace yf = mp::filter;
38
39 namespace metaproxy_1 {
40     namespace filter {
41         class HttpRewrite::Replace {
42         public:
43             std::string regex;
44             std::string recipe;
45             std::map<int, std::string> group_index;
46             const std::string search_replace(
47                 std::map<std::string, std::string> & vars,
48                 const std::string & txt) const;
49             std::string sub_vars(
50                 const std::map<std::string, std::string> & vars) const;
51             void parse_groups();
52         };
53
54         class HttpRewrite::Rule {
55         public:
56             std::list<Replace> replace_list;
57             const std::string test_patterns(
58                 std::map<std::string, std::string> & vars,
59                 const std::string & txt) const;
60         };
61         class HttpRewrite::Within {
62         public:
63             std::string header;
64             std::string attr;
65             std::string tag;
66             bool reqline;
67             RulePtr rule;
68         };
69
70         class HttpRewrite::Phase {
71         public:
72             Phase();
73             std::list<Within> within_list;
74             int m_verbose;
75             void rewrite_reqline(mp::odr & o, Z_HTTP_Request *hreq,
76                 std::map<std::string, std::string> & vars) const;
77             void rewrite_headers(mp::odr & o, Z_HTTP_Header *headers,
78                 std::map<std::string, std::string> & vars) const;
79             void rewrite_body(mp::odr & o,
80                 char **content_buf, int *content_len,
81                 std::map<std::string, std::string> & vars) const;
82         };
83         class HttpRewrite::Event : public HTMLParserEvent {
84             void openTagStart(const char *tag, int tag_len);
85             void anyTagEnd(const char *tag, int tag_len, int close_it);
86             void attribute(const char *tag, int tag_len,
87                            const char *attr, int attr_len,
88                            const char *value, int val_len,
89                            const char *sep);
90             void closeTag(const char *tag, int tag_len);
91             void text(const char *value, int len);
92             const Phase *m_phase;
93             WRBUF m_w;
94             std::stack<std::list<Within>::const_iterator> s_within;
95             std::map<std::string, std::string> &m_vars;
96         public:
97             Event(const Phase *p, std::map<std::string, std::string> &vars);
98             ~Event();
99             const char *result();
100         };
101     }
102 }
103
104 yf::HttpRewrite::HttpRewrite() :
105     req_phase(new Phase), res_phase(new Phase)
106 {
107 }
108
109 yf::HttpRewrite::~HttpRewrite()
110 {
111 }
112
113 void yf::HttpRewrite::process(mp::Package & package) const
114 {
115     yaz_log(YLOG_LOG, "HttpRewrite begins....");
116     Z_GDU *gdu = package.request().get();
117     //map of request/response vars
118     std::map<std::string, std::string> vars;
119     //we have an http req
120     if (gdu && gdu->which == Z_GDU_HTTP_Request)
121     {
122         Z_HTTP_Request *hreq = gdu->u.HTTP_Request;
123         mp::odr o;
124         req_phase->rewrite_reqline(o, hreq, vars);
125         yaz_log(YLOG_LOG, ">> Request headers");
126         req_phase->rewrite_headers(o, hreq->headers, vars);
127         req_phase->rewrite_body(o,
128                 &hreq->content_buf, &hreq->content_len, vars);
129         package.request() = gdu;
130     }
131     package.move();
132     gdu = package.response().get();
133     if (gdu && gdu->which == Z_GDU_HTTP_Response)
134     {
135         Z_HTTP_Response *hres = gdu->u.HTTP_Response;
136         yaz_log(YLOG_LOG, "Response code %d", hres->code);
137         mp::odr o;
138         yaz_log(YLOG_LOG, "<< Respose headers");
139         res_phase->rewrite_headers(o, hres->headers, vars);
140         res_phase->rewrite_body(o, &hres->content_buf,
141                 &hres->content_len, vars);
142         package.response() = gdu;
143     }
144 }
145
146 void yf::HttpRewrite::Phase::rewrite_reqline (mp::odr & o,
147         Z_HTTP_Request *hreq,
148         std::map<std::string, std::string> & vars) const
149 {
150     //rewrite the request line
151     std::string path;
152     if (strstr(hreq->path, "http://") == hreq->path)
153     {
154         yaz_log(YLOG_LOG, "Path in the method line is absolute, "
155             "possibly a proxy request");
156         path += hreq->path;
157     }
158     else
159     {
160         //TODO what about proto
161         path += "http://";
162         path += z_HTTP_header_lookup(hreq->headers, "Host");
163         path += hreq->path;
164     }
165
166
167     std::list<Within>::const_iterator it = within_list.begin();
168     for (; it != within_list.end(); it++)
169         if (it->reqline)
170         {
171             RulePtr rule = it->rule;
172             yaz_log(YLOG_LOG, "Proxy request URL is %s", path.c_str());
173             std::string npath = rule->test_patterns(vars, path);
174             if (!npath.empty())
175             {
176                 yaz_log(YLOG_LOG, "Rewritten request URL is %s", npath.c_str());
177                 hreq->path = odr_strdup(o, npath.c_str());
178             }
179         }
180 }
181
182 void yf::HttpRewrite::Phase::rewrite_headers(mp::odr & o,
183         Z_HTTP_Header *headers,
184         std::map<std::string, std::string> & vars) const
185 {
186     for (Z_HTTP_Header *header = headers; header; header = header->next)
187     {
188         std::list<Within>::const_iterator it = within_list.begin();
189         for (; it != within_list.end(); it++)
190         {
191             if (it->header.length() > 0 &&
192                 yaz_strcasecmp(it->header.c_str(), header->name) == 0)
193             {
194                 std::string sheader(header->name);
195                 sheader += ": ";
196                 sheader += header->value;
197
198                 RulePtr rule = it->rule;
199                 std::string out = rule->test_patterns(vars, sheader);
200                 if (!out.empty())
201                 {
202                     size_t pos = out.find(": ");
203                     if (pos == std::string::npos)
204                     {
205                         yaz_log(YLOG_LOG, "Header malformed during rewrite, ignoring");
206                         continue;
207                     }
208                     header->name = odr_strdup(o, out.substr(0, pos).c_str());
209                     header->value = odr_strdup(o,
210                                                out.substr(pos + 2,
211                                                           std::string::npos).c_str());
212                 }
213             }
214         }
215     }
216 }
217
218 void yf::HttpRewrite::Phase::rewrite_body(mp::odr & o,
219         char **content_buf,
220         int *content_len,
221         std::map<std::string, std::string> & vars) const
222 {
223     if (*content_buf)
224     {
225         int i;
226         for (i = 0; i < *content_len; i++)
227             if ((*content_buf)[i] == 0)
228                 return;  // binary content. skip
229
230         HTMLParser parser;
231         Event ev(this, vars);
232
233         parser.set_verbose(m_verbose);
234
235         std::string buf(*content_buf, *content_len);
236
237         parser.parse(ev, buf.c_str());
238         const char *res = ev.result();
239         *content_buf = odr_strdup(o, res);
240         *content_len = strlen(res);
241     }
242 }
243
244 yf::HttpRewrite::Event::Event(const Phase *p,
245                               std::map<std::string, std::string> & vars
246     ) : m_phase(p), m_vars(vars)
247 {
248     m_w = wrbuf_alloc();
249 }
250
251 yf::HttpRewrite::Event::~Event()
252 {
253     wrbuf_destroy(m_w);
254 }
255
256 const char *yf::HttpRewrite::Event::result()
257 {
258     return wrbuf_cstr(m_w);
259 }
260
261 void yf::HttpRewrite::Event::openTagStart(const char *tag, int tag_len)
262 {
263     wrbuf_putc(m_w, '<');
264     wrbuf_write(m_w, tag, tag_len);
265
266     std::string t(tag, tag_len);
267     std::list<Within>::const_iterator it = m_phase->within_list.begin();
268     for (; it != m_phase->within_list.end(); it++)
269     {
270         if (it->tag.length() > 0 && yaz_strcasecmp(it->tag.c_str(),
271                                                    t.c_str()) == 0)
272         {
273             std::vector<std::string> attr;
274             boost::split(attr, it->attr, boost::is_any_of(","));
275             size_t i;
276             for (i = 0; i < attr.size(); i++)
277             {
278                 if (attr[i].compare("#text") == 0)
279                 {
280                     s_within.push(it);
281                     return;
282                 }
283             }
284         }
285     }
286 }
287
288 void yf::HttpRewrite::Event::anyTagEnd(const char *tag, int tag_len,
289                                        int close_it)
290 {
291     if (close_it)
292     {
293         if (!s_within.empty())
294         {
295             std::list<Within>::const_iterator it = s_within.top();
296             std::string t(tag, tag_len);
297             if (yaz_strcasecmp(it->tag.c_str(), t.c_str()) == 0)
298                 s_within.pop();
299         }
300     }
301     if (close_it)
302         wrbuf_putc(m_w, '/');
303     wrbuf_putc(m_w, '>');
304 }
305
306 void yf::HttpRewrite::Event::attribute(const char *tag, int tag_len,
307                                        const char *attr, int attr_len,
308                                        const char *value, int val_len,
309                                        const char *sep)
310 {
311     std::list<Within>::const_iterator it = m_phase->within_list.begin();
312     bool subst = false;
313
314     for (; it != m_phase->within_list.end(); it++)
315     {
316         std::string t(tag, tag_len);
317         if (it->tag.length() == 0 ||
318             yaz_strcasecmp(it->tag.c_str(), t.c_str()) == 0)
319         {
320             std::string a(attr, attr_len);
321             std::vector<std::string> attr;
322             boost::split(attr, it->attr, boost::is_any_of(","));
323             size_t i;
324             for (i = 0; i < attr.size(); i++)
325             {
326                 if (attr[i].compare("#text") &&
327                     yaz_strcasecmp(attr[i].c_str(), a.c_str()) == 0)
328                     subst = true;
329             }
330         }
331         if (subst)
332             break;
333     }
334
335     wrbuf_putc(m_w, ' ');
336     wrbuf_write(m_w, attr, attr_len);
337     wrbuf_puts(m_w, "=");
338     wrbuf_puts(m_w, sep);
339
340     std::string output;
341     if (subst)
342     {
343         std::string input(value, val_len);
344         output = it->rule->test_patterns(m_vars, input);
345     }
346     if (output.empty())
347         wrbuf_write(m_w, value, val_len);
348     else
349         wrbuf_puts(m_w, output.c_str());
350     wrbuf_puts(m_w, sep);
351 }
352
353 void yf::HttpRewrite::Event::closeTag(const char *tag, int tag_len)
354 {
355     if (!s_within.empty())
356     {
357         std::list<Within>::const_iterator it = s_within.top();
358         std::string t(tag, tag_len);
359         if (yaz_strcasecmp(it->tag.c_str(), t.c_str()) == 0)
360             s_within.pop();
361     }
362     wrbuf_puts(m_w, "</");
363     wrbuf_write(m_w, tag, tag_len);
364 }
365
366 void yf::HttpRewrite::Event::text(const char *value, int len)
367 {
368     std::list<Within>::const_iterator it = m_phase->within_list.end();
369     if (!s_within.empty())
370         it = s_within.top();
371     std::string output;
372     if (it != m_phase->within_list.end())
373     {
374         std::string input(value, len);
375         output = it->rule->test_patterns(m_vars, input);
376     }
377     if (output.empty())
378         wrbuf_write(m_w, value, len);
379     else
380         wrbuf_puts(m_w, output.c_str());
381 }
382
383
384 /**
385  * Tests pattern from the vector in order and executes recipe on
386  the first match.
387  */
388 const std::string yf::HttpRewrite::Rule::test_patterns(
389         std::map<std::string, std::string> & vars,
390         const std::string & txt) const
391 {
392     std::list<Replace>::const_iterator it = replace_list.begin();
393
394     for (; it != replace_list.end(); it++)
395     {
396         std::string out = it->search_replace(vars, txt);
397         if (!out.empty()) return out;
398     }
399     return "";
400 }
401
402 const std::string yf::HttpRewrite::Replace::search_replace(
403         std::map<std::string, std::string> & vars,
404         const std::string & txt) const
405 {
406     //exec regex against value
407     boost::regex re(regex);
408     boost::smatch what;
409     std::string::const_iterator start, end;
410     start = txt.begin();
411     end = txt.end();
412     std::string out;
413     while (regex_search(start, end, what, re)) //find next full match
414     {
415         size_t i;
416         for (i = 1; i < what.size(); ++i)
417         {
418             //check if the group is named
419             std::map<int, std::string>::const_iterator it
420                 = group_index.find(i);
421             if (it != group_index.end())
422             {   //it is
423                 vars[it->second] = what[i];
424             }
425
426         }
427         //prepare replacement string
428         std::string rvalue = sub_vars(vars);
429         yaz_log(YLOG_LOG, "! Rewritten '%s' to '%s'",
430                 what.str(0).c_str(), rvalue.c_str());
431         out.append(start, what[0].first);
432         out.append(rvalue);
433         start = what[0].second; //move search forward
434     }
435     //if we had a match cat the last part
436     if (start != txt.begin())
437         out.append(start, end);
438     return out;
439 }
440
441 void yf::HttpRewrite::Replace::parse_groups()
442 {
443     int gnum = 0;
444     bool esc = false;
445     const std::string & str = regex;
446     std::string res;
447     yaz_log(YLOG_LOG, "Parsing groups from '%s'", str.c_str());
448     for (size_t i = 0; i < str.size(); ++i)
449     {
450         res += str[i];
451         if (!esc && str[i] == '\\')
452         {
453             esc = true;
454             continue;
455         }
456         if (!esc && str[i] == '(') //group starts
457         {
458             gnum++;
459             if (i+1 < str.size() && str[i+1] == '?') //group with attrs
460             {
461                 i++;
462                 if (i+1 < str.size() && str[i+1] == ':') //non-capturing
463                 {
464                     if (gnum > 0) gnum--;
465                     res += str[i];
466                     i++;
467                     res += str[i];
468                     continue;
469                 }
470                 if (i+1 < str.size() && str[i+1] == 'P') //optional, python
471                     i++;
472                 if (i+1 < str.size() && str[i+1] == '<') //named
473                 {
474                     i++;
475                     std::string gname;
476                     bool term = false;
477                     while (++i < str.size())
478                     {
479                         if (str[i] == '>') { term = true; break; }
480                         if (!isalnum(str[i]))
481                             throw mp::filter::FilterException
482                                 ("Only alphanumeric chars allowed, found "
483                                  " in '"
484                                  + str
485                                  + "' at "
486                                  + boost::lexical_cast<std::string>(i));
487                         gname += str[i];
488                     }
489                     if (!term)
490                         throw mp::filter::FilterException
491                             ("Unterminated group name '" + gname
492                              + " in '" + str +"'");
493                     group_index[gnum] = gname;
494                     yaz_log(YLOG_LOG, "Found named group '%s' at $%d",
495                             gname.c_str(), gnum);
496                 }
497             }
498         }
499         esc = false;
500     }
501     regex = res;
502 }
503
504 std::string yf::HttpRewrite::Replace::sub_vars(
505     const std::map<std::string, std::string> & vars) const
506 {
507     std::string out;
508     bool esc = false;
509     const std::string & in = recipe;
510     for (size_t i = 0; i < in.size(); ++i)
511     {
512         if (!esc && in[i] == '\\')
513         {
514             esc = true;
515             continue;
516         }
517         if (!esc && in[i] == '$') //var
518         {
519             if (i+1 < in.size() && in[i+1] == '{') //ref prefix
520             {
521                 ++i;
522                 std::string name;
523                 bool term = false;
524                 while (++i < in.size())
525                 {
526                     if (in[i] == '}') { term = true; break; }
527                     name += in[i];
528                 }
529                 if (!term) throw mp::filter::FilterException
530                     ("Unterminated var ref in '"+in+"' at "
531                      + boost::lexical_cast<std::string>(i));
532                 std::map<std::string, std::string>::const_iterator it
533                     = vars.find(name);
534                 if (it != vars.end())
535                 {
536                     out += it->second;
537                 }
538             }
539             else
540             {
541                 throw mp::filter::FilterException
542                     ("Malformed or trimmed var ref in '"
543                      +in+"' at "+boost::lexical_cast<std::string>(i));
544             }
545             continue;
546         }
547         //passthru
548         out += in[i];
549         esc = false;
550     }
551     return out;
552 }
553
554 yf::HttpRewrite::Phase::Phase() : m_verbose(0)
555 {
556 }
557
558 void yf::HttpRewrite::configure_phase(const xmlNode *ptr, Phase &phase)
559 {
560     static const char *names[2] = { "verbose", 0 };
561     std::string values[1];
562     values[0] = "0";
563     mp::xml::parse_attr(ptr, names, values);
564
565     phase.m_verbose = atoi(values[0].c_str());
566
567     std::map<std::string, RulePtr > rules;
568     for (ptr = ptr->children; ptr; ptr = ptr->next)
569     {
570         if (ptr->type != XML_ELEMENT_NODE)
571             continue;
572         else if (!strcmp((const char *) ptr->name, "rule"))
573         {
574             static const char *names[2] = { "name", 0 };
575             std::string values[1];
576             values[0] = "default";
577             mp::xml::parse_attr(ptr, names, values);
578
579             RulePtr rule(new Rule);
580             for (xmlNode *p = ptr->children; p; p = p->next)
581             {
582                 if (p->type != XML_ELEMENT_NODE)
583                     continue;
584                 if (!strcmp((const char *) p->name, "rewrite"))
585                 {
586                     Replace replace;
587                     const struct _xmlAttr *attr;
588                     for (attr = p->properties; attr; attr = attr->next)
589                     {
590                         if (!strcmp((const char *) attr->name,  "from"))
591                             replace.regex = mp::xml::get_text(attr->children);
592                         else if (!strcmp((const char *) attr->name,  "to"))
593                             replace.recipe = mp::xml::get_text(attr->children);
594                         else
595                             throw mp::filter::FilterException
596                                 ("Bad attribute "
597                                  + std::string((const char *) attr->name)
598                                  + " in rewrite section of http_rewrite");
599                     }
600                     yaz_log(YLOG_LOG, "Found rewrite rule from '%s' to '%s'",
601                             replace.regex.c_str(), replace.recipe.c_str());
602                     replace.parse_groups();
603                     if (!replace.regex.empty())
604                         rule->replace_list.push_back(replace);
605                 }
606                 else
607                     throw mp::filter::FilterException
608                         ("Bad element "
609                          + std::string((const char *) p->name)
610                          + " in http_rewrite filter");
611             }
612             rules[values[0]] = rule;
613         }
614         else if (!strcmp((const char *) ptr->name, "within"))
615         {
616             static const char *names[6] =
617                 { "header", "attr", "tag", "rule", "reqline", 0 };
618             std::string values[5];
619             mp::xml::parse_attr(ptr, names, values);
620             Within w;
621             w.header = values[0];
622             w.attr = values[1];
623             w.tag = values[2];
624             std::map<std::string,RulePtr>::const_iterator it =
625                 rules.find(values[3]);
626             if (it == rules.end())
627                 throw mp::filter::FilterException
628                     ("Reference to non-existing rule '" + values[3] +
629                      "' in http_rewrite filter");
630             w.rule = it->second;
631             w.reqline = values[4] == "1";
632             phase.within_list.push_back(w);
633         }
634         else
635         {
636             throw mp::filter::FilterException
637                 ("Bad element "
638                  + std::string((const char *) ptr->name)
639                  + " in http_rewrite filter");
640         }
641     }
642 }
643
644 void yf::HttpRewrite::configure(const xmlNode * ptr, bool test_only,
645         const char *path)
646 {
647     for (ptr = ptr->children; ptr; ptr = ptr->next)
648     {
649         if (ptr->type != XML_ELEMENT_NODE)
650             continue;
651         else if (!strcmp((const char *) ptr->name, "request"))
652         {
653             configure_phase(ptr, *req_phase);
654         }
655         else if (!strcmp((const char *) ptr->name, "response"))
656         {
657             configure_phase(ptr, *res_phase);
658         }
659         else
660         {
661             throw mp::filter::FilterException
662                 ("Bad element "
663                  + std::string((const char *) ptr->name)
664                  + " in http_rewrite1 filter");
665         }
666     }
667 }
668
669 static mp::filter::Base* filter_creator()
670 {
671     return new mp::filter::HttpRewrite;
672 }
673
674 extern "C" {
675     struct metaproxy_1_filter_struct metaproxy_1_filter_http_rewrite = {
676         0,
677         "http_rewrite",
678         filter_creator
679     };
680 }
681
682
683 /*
684  * Local variables:
685  * c-basic-offset: 4
686  * c-file-style: "Stroustrup"
687  * indent-tabs-mode: nil
688  * End:
689  * vim: shiftwidth=4 tabstop=8 expandtab
690  */
691