geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

160 lines
4.0 KiB

  1. /* Copyright (C) 2016 Alexander Lamaison
  2. * All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms,
  5. * with or without modification, are permitted provided
  6. * that the following conditions are met:
  7. *
  8. * Redistributions of source code must retain the above
  9. * copyright notice, this list of conditions and the
  10. * following disclaimer.
  11. *
  12. * Redistributions in binary form must reproduce the above
  13. * copyright notice, this list of conditions and the following
  14. * disclaimer in the documentation and/or other materials
  15. * provided with the distribution.
  16. *
  17. * Neither the name of the copyright holder nor the names
  18. * of any other contributors may be used to endorse or
  19. * promote products derived from this software without
  20. * specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  23. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  24. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  25. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  27. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  28. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  29. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  31. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  32. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  33. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  34. * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  35. * OF SUCH DAMAGE.
  36. */
  37. #include "session_fixture.h"
  38. #include "libssh2_config.h"
  39. #include "openssh_fixture.h"
  40. #include <stdio.h>
  41. #include <stdlib.h>
  42. #ifdef HAVE_UNISTD_H
  43. #include <unistd.h>
  44. #endif
  45. #ifdef HAVE_WINDOWS_H
  46. #include <windows.h>
  47. #endif
  48. #ifdef HAVE_WINSOCK2_H
  49. #include <winsock2.h>
  50. #endif
  51. #ifdef HAVE_SYS_SOCKET_H
  52. #include <sys/socket.h>
  53. #endif
  54. #ifdef HAVE_SYS_PARAM_H
  55. #include <sys/param.h>
  56. #endif
  57. LIBSSH2_SESSION *connected_session = NULL;
  58. int connected_socket = -1;
  59. static int connect_to_server()
  60. {
  61. int rc;
  62. connected_socket = open_socket_to_openssh_server();
  63. if(connected_socket <= 0) {
  64. return -1;
  65. }
  66. rc = libssh2_session_handshake(connected_session, connected_socket);
  67. if(rc != 0) {
  68. print_last_session_error("libssh2_session_handshake");
  69. return -1;
  70. }
  71. return 0;
  72. }
  73. void setup_fixture_workdir()
  74. {
  75. char *wd = getenv("FIXTURE_WORKDIR");
  76. #ifdef FIXTURE_WORKDIR
  77. if(!wd) {
  78. wd = FIXTURE_WORKDIR;
  79. }
  80. #endif
  81. if(!wd) {
  82. #ifdef WIN32
  83. char wd_buf[_MAX_PATH];
  84. #else
  85. char wd_buf[MAXPATHLEN];
  86. #endif
  87. getcwd(wd_buf, sizeof(wd_buf));
  88. wd = wd_buf;
  89. }
  90. chdir(wd);
  91. }
  92. LIBSSH2_SESSION *start_session_fixture()
  93. {
  94. int rc;
  95. setup_fixture_workdir();
  96. rc = start_openssh_fixture();
  97. if(rc != 0) {
  98. return NULL;
  99. }
  100. rc = libssh2_init(0);
  101. if(rc != 0) {
  102. fprintf(stderr, "libssh2_init failed (%d)\n", rc);
  103. return NULL;
  104. }
  105. connected_session = libssh2_session_init_ex(NULL, NULL, NULL, NULL);
  106. libssh2_session_set_blocking(connected_session, 1);
  107. if(connected_session == NULL) {
  108. fprintf(stderr, "libssh2_session_init_ex failed\n");
  109. return NULL;
  110. }
  111. rc = connect_to_server();
  112. if(rc != 0) {
  113. return NULL;
  114. }
  115. return connected_session;
  116. }
  117. void print_last_session_error(const char *function)
  118. {
  119. if(connected_session) {
  120. char *message;
  121. int rc =
  122. libssh2_session_last_error(connected_session, &message, NULL, 0);
  123. fprintf(stderr, "%s failed (%d): %s\n", function, rc, message);
  124. }
  125. else {
  126. fprintf(stderr, "No session");
  127. }
  128. }
  129. void stop_session_fixture()
  130. {
  131. if(connected_session) {
  132. libssh2_session_disconnect(connected_session, "test ended");
  133. libssh2_session_free(connected_session);
  134. shutdown(connected_socket, 2);
  135. connected_session = NULL;
  136. }
  137. else {
  138. fprintf(stderr, "Cannot stop session - none started");
  139. }
  140. stop_openssh_fixture();
  141. }