1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <libtest/common.h>
25 using namespace libtest
;
38 #include <sys/types.h>
41 static int exited_successfully(int status
)
48 if (WIFEXITED(status
) == true)
50 return WEXITSTATUS(status
);
52 else if (WIFSIGNALED(status
) == true)
54 return WTERMSIG(status
);
63 std::string
print_argv(char * * & built_argv
, const size_t& argc
)
65 std::stringstream arg_buffer
;
67 for (size_t x
= 0; x
< argc
; x
++)
69 arg_buffer
<< built_argv
[x
] << " ";
72 return arg_buffer
.str();
75 std::string
print_argv(char** argv
)
77 std::stringstream arg_buffer
;
79 for (char** ptr
= argv
; *ptr
; ptr
++)
81 arg_buffer
<< *ptr
<< " ";
84 return arg_buffer
.str();
87 static Application::error_t
int_to_error_t(int arg
)
92 return Application::INVALID
;
95 return Application::SUCCESS
;
99 return Application::FAILURE
;
106 Application::Application(const std::string
& arg
, const bool _use_libtool_arg
) :
107 _use_libtool(_use_libtool_arg
),
108 _use_valgrind(false),
112 stdin_fd(STDIN_FILENO
),
113 stdout_fd(STDOUT_FILENO
),
114 stderr_fd(STDERR_FILENO
),
120 if (libtool() == NULL
)
122 fatal_message("libtool requested, but know libtool was found");
126 // Find just the name of the application with no path
128 size_t found
= arg
.find_last_of("/\\");
131 _exectuble_name
= arg
.substr(found
+1);
135 _exectuble_name
= arg
;
139 if (_use_libtool
and getenv("PWD"))
141 _exectuble_with_path
+= getenv("PWD");
142 _exectuble_with_path
+= "/";
144 _exectuble_with_path
+= _exectuble
;
147 Application::~Application()
153 Application::error_t
Application::run(const char *args
[])
158 _stdout_buffer
.clear();
159 _stderr_buffer
.clear();
161 posix_spawn_file_actions_t file_actions
;
162 posix_spawn_file_actions_init(&file_actions
);
164 stdin_fd
.dup_for_spawn(Application::Pipe::READ
, file_actions
);
165 stdout_fd
.dup_for_spawn(Application::Pipe::WRITE
, file_actions
);
166 stderr_fd
.dup_for_spawn(Application::Pipe::WRITE
, file_actions
);
168 posix_spawnattr_t spawnattr
;
169 posix_spawnattr_init(&spawnattr
);
173 fatal_assert(posix_spawnattr_setsigmask(&spawnattr
, &set
) == 0);
180 std::string gdb_run_file
= create_tmpfile(_exectuble_name
);
181 std::fstream file_stream
;
182 file_stream
.open(gdb_run_file
.c_str(), std::fstream::out
| std::fstream::trunc
);
184 _gdb_filename
= create_tmpfile(_exectuble_name
);
186 << "set logging redirect on" << std::endl
187 << "set logging file " << _gdb_filename
<< std::endl
188 << "set logging overwrite on" << std::endl
189 << "set logging on" << std::endl
190 << "set environment LIBTEST_IN_GDB=1" << std::endl
191 << "run " << arguments() << std::endl
192 << "thread apply all bt" << std::endl
193 << "quit" << std::endl
;
195 fatal_assert(file_stream
.good());
200 // libtool --mode=execute gdb -f -x binary
202 const_cast<char *>(libtool()),
203 const_cast<char *>("--mode=execute"),
204 const_cast<char *>("gdb"),
205 const_cast<char *>("-batch"),
206 const_cast<char *>("-f"),
207 const_cast<char *>("-x"),
208 const_cast<char *>(gdb_run_file
.c_str()),
209 const_cast<char *>(_exectuble_with_path
.c_str()),
212 spawn_ret
= posix_spawnp(&_pid
, libtool(), &file_actions
, &spawnattr
, argv
, NULL
);
218 const_cast<char *>("gdb"),
219 const_cast<char *>("-batch"),
220 const_cast<char *>("-f"),
221 const_cast<char *>("-x"),
222 const_cast<char *>(gdb_run_file
.c_str()),
223 const_cast<char *>(_exectuble_with_path
.c_str()),
225 spawn_ret
= posix_spawnp(&_pid
, "gdb", &file_actions
, &spawnattr
, argv
, NULL
);
232 spawn_ret
= posix_spawn(&_pid
, built_argv
[0], &file_actions
, &spawnattr
, built_argv
, NULL
);
236 spawn_ret
= posix_spawnp(&_pid
, built_argv
[0], &file_actions
, &spawnattr
, built_argv
, NULL
);
240 posix_spawn_file_actions_destroy(&file_actions
);
241 posix_spawnattr_destroy(&spawnattr
);
243 stdin_fd
.close(Application::Pipe::READ
);
244 stdout_fd
.close(Application::Pipe::WRITE
);
245 stderr_fd
.close(Application::Pipe::WRITE
);
250 return Application::INVALID
;
253 return Application::SUCCESS
;
256 bool Application::check() const
258 if (_pid
> 1 and kill(_pid
, 0) == 0)
266 void Application::murder()
271 while ((count
--) > 0 and check())
273 int kill_ret
= kill(_pid
, SIGTERM
);
278 if ((waitpid_ret
= waitpid(_pid
, &status
, WNOHANG
)) == -1)
287 Error
<< "waitpid() failed after kill with error of " << strerror(errno
);
292 if (waitpid_ret
== 0)
294 libtest::dream(1, 0);
299 Error
<< "kill(pid, SIGTERM) failed after kill with error of " << strerror(errno
);
306 // If for whatever reason it lives, kill it hard
309 (void)kill(_pid
, SIGKILL
);
315 // false means that no data was returned
316 bool Application::slurp()
318 struct pollfd fds
[2];
319 fds
[0].fd
= stdout_fd
.fd();
320 fds
[0].events
= POLLRDNORM
;
322 fds
[1].fd
= stderr_fd
.fd();
323 fds
[1].events
= POLLRDNORM
;
327 if ((active_fd
= poll(fds
, 2, 0)) == -1)
330 switch ((error
= errno
))
332 #ifdef TARGET_OS_LINUX
340 fatal_message(strerror(error
));
344 fatal_message("RLIMIT_NOFILE exceeded, or if OSX the timeout value was invalid");
348 fatal_message(strerror(error
));
360 bool data_was_read
= false;
361 if (fds
[0].revents
& POLLRDNORM
)
363 if (stdout_fd
.read(_stdout_buffer
) == true)
369 if (fds
[1].revents
& POLLRDNORM
)
371 if (stderr_fd
.read(_stderr_buffer
) == true)
377 return data_was_read
;
380 Application::error_t
Application::wait(bool nohang
)
384 return Application::INVALID
;
389 error_t exit_code
= FAILURE
;
393 if ((waited_pid
= waitpid(_pid
, &status
, nohang
? WNOHANG
: 0)) == -1)
398 exit_code
= Application::SUCCESS
;
405 Error
<< "Error occured while waitpid(" << strerror(errno
) << ") on pid " << int(_pid
);
409 else if (waited_pid
== 0)
411 exit_code
= Application::SUCCESS
;
415 if (waited_pid
!= _pid
)
417 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
, "Pid mismatch, %d != %d", int(waited_pid
), int(_pid
));
419 exit_code
= int_to_error_t(exited_successfully(status
));
426 if (exit_code
== Application::INVALID
)
428 Error
<< print_argv(built_argv
, _argc
);
435 void Application::add_long_option(const std::string
& name
, const std::string
& option_value
)
437 std::string
arg(name
);
439 _options
.push_back(std::make_pair(arg
, std::string()));
442 void Application::add_option(const std::string
& arg
)
444 _options
.push_back(std::make_pair(arg
, std::string()));
447 void Application::add_option(const std::string
& name
, const std::string
& value
)
449 _options
.push_back(std::make_pair(name
, value
));
452 Application::Pipe::Pipe(int arg
) :
461 int Application::Pipe::Pipe::fd()
463 if (_std_fd
== STDOUT_FILENO
)
465 return _pipe_fd
[READ
];
467 else if (_std_fd
== STDERR_FILENO
)
469 return _pipe_fd
[READ
];
472 return _pipe_fd
[WRITE
]; // STDIN_FILENO
476 bool Application::Pipe::read(libtest::vchar_t
& arg
)
478 fatal_assert(_std_fd
== STDOUT_FILENO
or _std_fd
== STDERR_FILENO
);
480 bool data_was_read
= false;
483 char buffer
[1024]= { 0 };
484 while ((read_length
= ::read(_pipe_fd
[READ
], buffer
, sizeof(buffer
))))
486 if (read_length
== -1)
494 Error
<< strerror(errno
);
502 arg
.reserve(read_length
+1);
503 for (size_t x
= 0; x
< read_length
; x
++)
505 arg
.push_back(buffer
[x
]);
507 // @todo Suck up all errput code here
510 return data_was_read
;
513 void Application::Pipe::nonblock()
516 if ((ret
= fcntl(_pipe_fd
[READ
], F_GETFL
, 0)) == -1)
518 Error
<< "fcntl(F_GETFL) " << strerror(errno
);
519 throw strerror(errno
);
522 if ((ret
= fcntl(_pipe_fd
[READ
], F_SETFL
, ret
| O_NONBLOCK
)) == -1)
524 Error
<< "fcntl(F_SETFL) " << strerror(errno
);
525 throw strerror(errno
);
529 void Application::Pipe::reset()
535 if (pipe2(_pipe_fd
, O_NONBLOCK
) == -1)
537 if (pipe(_pipe_fd
) == -1)
540 fatal_message(strerror(errno
));
552 void Application::Pipe::cloexec()
555 if ((ret
= fcntl(_pipe_fd
[WRITE
], F_GETFD
, 0)) == -1)
557 Error
<< "fcntl(F_GETFD) " << strerror(errno
);
558 throw strerror(errno
);
561 if ((ret
= fcntl(_pipe_fd
[WRITE
], F_SETFD
, ret
| FD_CLOEXEC
)) == -1)
563 Error
<< "fcntl(F_SETFD) " << strerror(errno
);
564 throw strerror(errno
);
568 Application::Pipe::~Pipe()
574 void Application::Pipe::dup_for_spawn(const close_t
& arg
, posix_spawn_file_actions_t
& file_actions
)
579 if ((ret
= posix_spawn_file_actions_adddup2(&file_actions
, _pipe_fd
[type
], _std_fd
)) < 0)
581 Error
<< "posix_spawn_file_actions_adddup2(" << strerror(ret
) << ")";
582 fatal_message(strerror(ret
));
585 if ((ret
= posix_spawn_file_actions_addclose(&file_actions
, _pipe_fd
[type
])) < 0)
587 Error
<< "posix_spawn_file_actions_adddup2(" << strerror(ret
) << ")";
588 fatal_message(strerror(ret
));
592 void Application::Pipe::close(const close_t
& arg
)
599 if (::close(_pipe_fd
[type
]) == -1)
601 Error
<< "close(" << strerror(errno
) << ")";
608 void Application::create_argv(const char *args
[])
611 fatal_assert(_argc
== 0);
615 _argc
+= 2; // +2 for libtool --mode=execute
618 _argc
+= 1; // For the command
621 valgrind --error-exitcode=1 --leak-check=yes --show-reachable=yes --track-fds=yes --malloc-fill=A5 --free-fill=DE
627 else if (_use_gdb
) // gdb
632 for (Options::const_iterator iter
= _options
.begin(); iter
!= _options
.end(); iter
++)
635 if ((*iter
).second
.empty() == false)
643 for (const char **ptr
= args
; *ptr
; ++ptr
)
649 _argc
+= 1; // for the NULL
651 built_argv
= new char * [_argc
];
657 built_argv
[x
++]= strdup(libtool());
658 built_argv
[x
++]= strdup("--mode=execute");
664 valgrind --error-exitcode=1 --leak-check=yes --show-reachable=yes --track-fds=yes --malloc-fill=A5 --free-fill=DE
666 built_argv
[x
++]= strdup("valgrind");
667 built_argv
[x
++]= strdup("--error-exitcode=1");
668 built_argv
[x
++]= strdup("--leak-check=yes");
669 built_argv
[x
++]= strdup("--show-reachable=yes");
670 built_argv
[x
++]= strdup("--track-fds=yes");
671 built_argv
[x
++]= strdup("--malloc-fill=A5");
672 built_argv
[x
++]= strdup("--free-fill=DE");
676 built_argv
[x
++]= strdup("gdb");
679 built_argv
[x
++]= strdup(_exectuble_with_path
.c_str());
681 for (Options::const_iterator iter
= _options
.begin(); iter
!= _options
.end(); iter
++)
683 built_argv
[x
++]= strdup((*iter
).first
.c_str());
684 if ((*iter
).second
.empty() == false)
686 built_argv
[x
++]= strdup((*iter
).second
.c_str());
692 for (const char **ptr
= args
; *ptr
; ++ptr
)
694 built_argv
[x
++]= strdup(*ptr
);
697 built_argv
[x
++]= NULL
;
698 fatal_assert(x
== _argc
);
701 std::string
Application::print()
703 return print_argv(built_argv
, _argc
);
706 std::string
Application::arguments()
708 std::stringstream arg_buffer
;
710 for (size_t x
= 1 + _use_libtool
? 2 : 0;
711 x
< _argc
and built_argv
[x
];
714 arg_buffer
<< built_argv
[x
] << " ";
717 return arg_buffer
.str();
720 void Application::delete_argv()
724 for (size_t x
= 0; x
< _argc
; x
++)
728 ::free(built_argv
[x
]);
738 int exec_cmdline(const std::string
& command
, const char *args
[], bool use_libtool
)
740 Application
app(command
, use_libtool
);
742 Application::error_t ret
= app
.run(args
);
744 if (ret
!= Application::SUCCESS
)
749 return int(app
.wait(false));
752 const char *gearmand_binary()
754 return GEARMAND_BINARY
;
757 } // namespace exec_cmdline