Beginnings of CGI filter
[metaproxy-moved-to-github.git] / src / filter_cgi.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2010 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 "filter_cgi.hpp"
20 #include <metaproxy/package.hpp>
21 #include <metaproxy/util.hpp>
22 #include "gduutil.hpp"
23 #include <yaz/zgdu.h>
24 #include <yaz/log.h>
25
26 #include <unistd.h>
27 #include <sys/wait.h>
28 #include <sstream>
29
30 #include "config.hpp"
31
32 namespace mp = metaproxy_1;
33 namespace yf = mp::filter;
34
35 namespace metaproxy_1 {
36     namespace filter {
37         class CGI::Exec {
38             friend class Rep;
39             friend class CGI;
40             std::string path;
41             std::string program;
42         };
43         class CGI::Rep {
44             friend class CGI;
45             std::list<CGI::Exec> exec_map;
46         };
47     }
48 }
49
50 yf::CGI::CGI() : m_p(new Rep)
51 {
52
53 }
54
55 yf::CGI::~CGI()
56 {  // must have a destructor because of boost::scoped_ptr
57 }
58
59 void yf::CGI::process(mp::Package &package) const
60 {
61     Z_GDU *zgdu_req = package.request().get();
62     Z_GDU *zgdu_res = 0;
63     
64     if (!zgdu_req)
65         return;
66     
67     if (zgdu_req->which != Z_GDU_HTTP_Request)
68     {
69         package.move();
70         return;
71     }
72     std::string path_info;
73     std::string query_string;
74     const char *path = zgdu_req->u.HTTP_Request->path;
75     yaz_log(YLOG_LOG, "path=%s", path);
76     const char *p_cp = strchr(path, '?');
77     if (p_cp)
78     {
79         path_info.assign(path, p_cp - path);
80         query_string.assign(p_cp+1);
81     }
82     else
83         path_info.assign(path);
84
85     std::list<CGI::Exec>::const_iterator it;
86     metaproxy_1::odr odr;
87     for (it = m_p->exec_map.begin(); it != m_p->exec_map.end(); it++)
88     {
89         if (it->path.compare(path_info) == 0)
90         {
91             int r;
92             pid_t pid;
93             int status;
94
95             pid = ::fork();
96             switch (pid)
97             {
98             case 0: /* child */
99                 setenv("PATH_INFO", path_info.c_str(), 1);
100                 setenv("QUERY_STRING", query_string.c_str(), 1);
101                 r = execl(it->program.c_str(), it->program.c_str(), (char *) 0);
102                 if (r == -1)
103                     exit(1);
104                 exit(0);
105                 break;
106             case -1: /* error */
107                 zgdu_res = odr.create_HTTP_Response(
108                     package.session(), zgdu_req->u.HTTP_Request, 400);
109                 package.response() = zgdu_res;
110                 break;
111             default: /* parent */
112                 waitpid(pid, &status, 0);
113
114                 zgdu_res = odr.create_HTTP_Response(
115                     package.session(), zgdu_req->u.HTTP_Request, 200);
116                 package.response() = zgdu_res;
117                 break;
118             }
119             return;
120         }
121     }
122     package.move();
123 }
124
125 void yf::CGI::configure(const xmlNode *ptr, bool test_only)
126 {
127     for (ptr = ptr->children; ptr; ptr = ptr->next)
128     {
129         if (ptr->type != XML_ELEMENT_NODE)
130             continue;
131         if (!strcmp((const char *) ptr->name, "map"))
132         {
133             CGI::Exec exec;
134
135             const struct _xmlAttr *attr;
136             for (attr = ptr->properties; attr; attr = attr->next)
137             {
138                 if (!strcmp((const char *) attr->name,  "path"))
139                     exec.path = mp::xml::get_text(attr->children);
140                 else if (!strcmp((const char *) attr->name, "exec"))
141                     exec.program = mp::xml::get_text(attr->children);
142                 else
143                     throw mp::filter::FilterException
144                         ("Bad attribute " 
145                          + std::string((const char *) attr->name)
146                          + " in cgi section");
147             }
148             m_p->exec_map.push_back(exec);
149         }
150         else
151         {
152             throw mp::filter::FilterException("Bad element " 
153                                                + std::string((const char *)
154                                                              ptr->name));
155         }
156     }
157 }
158
159 static mp::filter::Base* filter_creator()
160 {
161     return new mp::filter::CGI;
162 }
163
164 extern "C" {
165     struct metaproxy_1_filter_struct metaproxy_1_filter_cgi = {
166         0,
167         "cgi",
168         filter_creator
169     };
170 }
171
172
173 /*
174  * Local variables:
175  * c-basic-offset: 4
176  * c-file-style: "Stroustrup"
177  * indent-tabs-mode: nil
178  * End:
179  * vim: shiftwidth=4 tabstop=8 expandtab
180  */
181