1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * Data Differential YATL (i.e. libtest) library
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include "libtest/yatlcon.h"
39 #include <libtest/common.h>
53 static inline std::string
&rtrim(std::string
&s
)
55 s
.erase(std::find_if(s
.rbegin(), s
.rend(), std::not1(std::ptr_fun
<int, int>(std::isspace
))).base(), s
.end());
59 #include <libtest/server.h>
60 #include <libtest/stream.h>
61 #include <libtest/killpid.h>
65 std::ostream
& operator<<(std::ostream
& output
, const Server
&arg
)
69 output
<< arg
.hostname();
73 output
<< arg
.hostname() << ":" << arg
.port();
78 output
<< " Pid:" << arg
.pid();
83 output
<< " Socket:" << arg
.socket();
86 if (arg
.running().empty() == false)
88 output
<< " Exec:" << arg
.running();
91 return output
; // for multiple << operators
100 Buffer(char *b
) : b_(b
) {}
101 ~Buffer() { if (b_
) free(b_
); }
102 char* buf() { return b_
; }
110 #define MAGIC_MEMORY 123570
112 Server::Server(const std::string
& host_arg
, const in_port_t port_arg
,
113 const std::string
& executable
, const bool _is_libtool
,
114 bool is_socket_arg
) :
115 _magic(MAGIC_MEMORY
),
116 _is_socket(is_socket_arg
),
119 _app(executable
, _is_libtool
),
120 out_of_ban_killed_(false),
137 bool Server::validate()
139 return _magic
== MAGIC_MEMORY
;
142 // If the server exists, kill it
147 // Try to ping, and kill the server #limit number of times
149 is_pid_valid(_app
.pid()))
153 Log
<< "Killed existing server," << *this;
159 // For whatever reason we could not kill it, and we reached limit
162 Error
<< "Reached limit, could not kill server";
169 bool Server::wait_for_pidfile() const
171 Wait
wait(pid_file(), 4);
173 return wait
.successful();
176 bool Server::has_pid() const
178 return (_app
.pid() > 1);
184 // If we find that we already have a pid then kill it.
185 if (has_pid() == true)
188 fatal_message("has_pid() failed, programer error");
192 if (getenv("YATL_GDB_SERVER"))
197 if (port() == LIBTEST_FAIL_PORT
)
199 throw libtest::disconnected(LIBYATL_DEFAULT_PARAM
,
200 hostname(), port(), "Called failure");
203 if (getenv("YATL_PTRCHECK_SERVER"))
205 _app
.use_ptrcheck(true);
207 else if (getenv("YATL_VALGRIND_SERVER"))
209 _app
.use_valgrind(true);
212 out_of_ban_killed(false);
213 if (args(_app
) == false)
215 throw libtest::disconnected(LIBYATL_DEFAULT_PARAM
,
216 hostname(), port(), "Could not build command()");
219 libtest::release_port(_port
);
221 Application::error_t ret
;
222 if (Application::SUCCESS
!= (ret
= _app
.run()))
224 throw libtest::disconnected(LIBYATL_DEFAULT_PARAM
,
225 hostname(), port(), "Application::run() %s", libtest::Application::toString(ret
));
228 _running
= _app
.print();
230 if (valgrind_is_caller())
239 if (pid_file().empty() == false)
241 Wait
wait(pid_file(), 8);
243 if (wait
.successful() == false)
252 Buffer
buf( get_current_dir_name());
253 char *getcwd_buf
= buf
.buf();
255 libtest::vchar_t buf
;
256 buf
.resize(PATH_MAX
);
257 char *getcwd_buf
= getcwd(&buf
[0], buf
.size());
259 throw libtest::disconnected(LIBYATL_DEFAULT_PARAM
,
261 "Unable to open pidfile in %s for: %s stderr:%s",
262 getcwd_buf
? getcwd_buf
: "",
264 _app
.stderr_c_str());
270 uint32_t this_wait
= 0;
275 for (waited
= 0, retry
= 1; ; retry
++, waited
+= this_wait
)
277 if (_app
.check() == false)
282 if ((pinged
= ping()) == true)
286 else if (waited
>= _timeout
)
291 this_wait
= retry
* retry
/ 3 + 1;
292 libtest::dream(this_wait
, 0);
299 Error
<< "Failed to ping(" << _app
.pid() << ") wait: " << this_wait
<< " " << hostname() << ":" << port() << " run:" << _running
<< " " << error();
302 // If we happen to have a pid file, lets try to kill it
303 if ((pid_file().empty() == false) and (access(pid_file().c_str(), R_OK
) == 0))
306 if (kill_file(pid_file()) == false)
308 throw libtest::disconnected(LIBYATL_DEFAULT_PARAM
,
310 "Failed to kill off server, waited: %u after startup occurred, when pinging failed: %.*s stderr:%.*s",
312 int(_running
.size()), _running
.c_str(),
313 int(_app
.stderr_result_length()), _app
.stderr_c_str());
317 throw libtest::disconnected(LIBYATL_DEFAULT_PARAM
,
319 "Failed native ping(), pid: %d was alive: %s waited: %u server started, having pid_file. exec: %.*s stderr:%.*s",
321 _app
.check() ? "true" : "false",
323 int(_running
.size()), _running
.c_str(),
324 int(_app
.stderr_result_length()), _app
.stderr_c_str());
329 throw libtest::disconnected(LIBYATL_DEFAULT_PARAM
,
331 "Failed native ping(), pid: %d is alive: %s waited: %u server started. exec: %.*s stderr:%.*s",
333 _app
.check() ? "true" : "false",
335 int(_running
.size()), _running
.c_str(),
336 int(_app
.stderr_result_length()), _app
.stderr_c_str());
346 void Server::reset_pid()
352 pid_t
Server::pid() const
357 void Server::add_option(const std::string
& arg
)
359 _options
.push_back(std::make_pair(arg
, std::string()));
362 void Server::add_option(const std::string
& name_
, const std::string
& value_
)
364 _options
.push_back(std::make_pair(name_
, value_
));
367 bool Server::set_socket_file()
369 libtest::vchar_t file_buffer
;
370 file_buffer
.resize(FILENAME_MAX
);
373 if (broken_pid_file())
375 snprintf(&file_buffer
[0], file_buffer
.size(), "/tmp/%s.socketXXXXXX", name());
379 snprintf(&file_buffer
[0], file_buffer
.size(), "var/run/%s.socketXXXXXX", name());
383 if ((fd
= mkstemp(&file_buffer
[0])) == -1)
385 perror(&file_buffer
[0]);
389 unlink(&file_buffer
[0]);
391 _socket
= &file_buffer
[0];
396 bool Server::set_pid_file()
398 libtest::vchar_t file_buffer
;
399 file_buffer
.resize(FILENAME_MAX
);
402 if (broken_pid_file())
404 snprintf(&file_buffer
[0], file_buffer
.size(), "/tmp/%s.pidXXXXXX", name());
408 snprintf(&file_buffer
[0], file_buffer
.size(), "var/run/%s.pidXXXXXX", name());
412 if ((fd
= mkstemp(&file_buffer
[0])) == -1)
414 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
, "mkstemp() failed on %s with %s", &file_buffer
[0], strerror(errno
));
417 unlink(&file_buffer
[0]);
419 _pid_file
= &file_buffer
[0];
424 bool Server::set_log_file()
426 libtest::vchar_t file_buffer
;
427 file_buffer
.resize(FILENAME_MAX
);
430 snprintf(&file_buffer
[0], file_buffer
.size(), "var/log/%s.logXXXXXX", name());
432 if ((fd
= mkstemp(&file_buffer
[0])) == -1)
434 throw libtest::fatal(LIBYATL_DEFAULT_PARAM
, "mkstemp() failed on %s with %s", &file_buffer
[0], strerror(errno
));
438 _log_file
= &file_buffer
[0];
443 bool Server::args(Application
& app
)
446 // Set a log file if it was requested (and we can)
447 if (has_log_file_option())
450 log_file_option(app
, _log_file
);
453 if (getenv("LIBTEST_SYSLOG") and has_syslog())
455 app
.add_option("--syslog");
460 if (_pid_file
.empty() and set_pid_file() == false)
465 pid_file_option(app
, pid_file());
468 if (has_socket_file_option())
470 if (set_socket_file() == false)
475 socket_file_option(app
, _socket
);
478 if (has_port_option())
480 port_option(app
, _port
);
483 for (Options::const_iterator iter
= _options
.begin(); iter
!= _options
.end(); ++iter
)
485 if ((*iter
).first
.empty() == false)
487 if ((*iter
).second
.empty() == false)
489 app
.add_option((*iter
).first
, (*iter
).second
);
493 app
.add_option((*iter
).first
);
501 bool Server::murder()
503 if (check_pid(_app
.pid())) // If we kill it, reset
506 if (broken_pid_file() and pid_file().empty() == false)
508 unlink(pid_file().c_str());
511 if (broken_socket_cleanup() and has_socket() and not socket().empty())
513 unlink(socket().c_str());
524 } // namespace libtest