4 * The secure anycast tunneling protocol (satp) defines a protocol used
5 * for communication between any combination of unicast and anycast
6 * tunnel endpoints. It has less protocol overhead than IPSec in Tunnel
7 * mode and allows tunneling of every ETHER TYPE protocol (e.g.
8 * ethernet, ip, arp ...). satp directly includes cryptography and
9 * message authentication based on the methodes used by SRTP. It is
10 * intended to deliver a generic, scaleable and secure solution for
11 * tunneling and relaying of packets of any protocol.
14 * Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl,
15 * Christian Pointner <satp@wirdorange.org>
17 * This file is part of Anytun.
19 * Anytun is free software: you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation, either version 3 of the License, or
24 * Anytun is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
29 * You should have received a copy of the GNU General Public License
30 * along with anytun. If not, see <http://www.gnu.org/licenses/>.
33 #ifndef ANYTUN_sysexec_hpp_INCLUDED
34 #define ANYTUN_sysexec_hpp_INCLUDED
36 #include <sys/types.h>
41 #include <sys/select.h>
54 char** dupSysStringArray(T const& array)
57 new_array = static_cast<char**>(malloc((array.size() + 1)*sizeof(char*)));
62 for(typename T::const_iterator it = array.begin(); it != array.end(); ++it) {
63 new_array[i] = strdup(it->c_str());
72 new_array[array.size()] = NULL;
76 void freeSysStringArray(char** array)
81 for(int i=0; array[i] ; ++i)
87 void SysExec::doExec(StringVector args, StringList env)
90 if(pipe(pipefd) == -1) {
91 cLog.msg(Log::PRIO_ERROR) << "executing script '" << script_ << "' pipe() error: " << AnytunErrno(errno);
97 cLog.msg(Log::PRIO_ERROR) << "executing script '" << script_ << "' fork() error: " << AnytunErrno(errno);
104 // parent exits here, call waitForScript to cleanup up zombie
107 // child code, exec the script
109 for (fd=getdtablesize();fd>=0;--fd) // close all file descriptors
110 if(fd != pipefd[1]) close(fd);
112 fd = open("/dev/null",O_RDWR); // stdin
114 cLog.msg(Log::PRIO_WARNING) << "can't open stdin";
116 if(dup(fd) == -1) // stdout
117 cLog.msg(Log::PRIO_WARNING) << "can't open stdout";
118 if(dup(fd) == -1) // stderr
119 cLog.msg(Log::PRIO_WARNING) << "can't open stderr";
122 args.insert(args.begin(), script_);
123 char** argv = dupSysStringArray(args);
124 char** evp = dupSysStringArray(env);
126 execve(script_.c_str(), argv, evp);
127 // if execve returns, an error occurred, but logging doesn't work
128 // because we closed all file descriptors, so just write errno to
129 // pipe and call exit
131 freeSysStringArray(argv);
132 freeSysStringArray(evp);
135 int ret = write(pipefd[1], (void*)(&err), sizeof(err));
136 if(ret != sizeof(errno))
141 int SysExec::waitForScript()
144 waitpid(pid_, &status, 0);
148 FD_SET(pipefd_, &rfds);
149 struct timeval tv = { 0 , 0 };
150 if(select(pipefd_+1, &rfds, NULL, NULL, &tv) == 1) {
152 if(read(pipefd_, (void*)(&err), sizeof(err)) >= static_cast<int>(sizeof(err))) {
153 cLog.msg(Log::PRIO_ERROR) << "script '" << script_ << "' exec() error: " << AnytunErrno(err);
162 return_code_ = status;
167 void SysExec::waitAndDestroy(SysExec*& s)
173 if(WIFEXITED(s->return_code_))
174 cLog.msg(Log::PRIO_NOTICE) << "script '" << s->script_ << "' returned " << WEXITSTATUS(s->return_code_);
175 else if(WIFSIGNALED(s->return_code_))
176 cLog.msg(Log::PRIO_NOTICE) << "script '" << s->script_ << "' terminated after signal " << WTERMSIG(s->return_code_);
177 else if(WIFSTOPPED(s->return_code_))
178 cLog.msg(Log::PRIO_NOTICE) << "script '" << s->script_ << "' stopped after signal " << WSTOPSIG(s->return_code_);
179 else if(WIFCONTINUED(s->return_code_))
180 cLog.msg(Log::PRIO_NOTICE) << "script '" << s->script_ << "' continued after SIGCONT";
186 #endif // ANYTUN_sysexec_hpp_INCLUDED