uic.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * Copyright (c) 2006 Steven Dake (sdake@mvista.com)
  3. * Copyright (c) 2006 Sun Microsystems, Inc.
  4. *
  5. * This software licensed under BSD license, the text of which follows:
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions are met:
  9. *
  10. * - Redistributions of source code must retain the above copyright notice,
  11. * this list of conditions and the following disclaimer.
  12. * - Redistributions in binary form must reproduce the above copyright notice,
  13. * this list of conditions and the following disclaimer in the documentation
  14. * and/or other materials provided with the distribution.
  15. * - Neither the name of the MontaVista Software, Inc. nor the names of its
  16. * contributors may be used to endorse or promote products derived from this
  17. * software without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  29. * THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #include <sys/uio.h>
  32. #include <sys/mman.h>
  33. #include <sys/types.h>
  34. #include <sys/socket.h>
  35. #include <sys/un.h>
  36. #include <sys/time.h>
  37. #include <sys/resource.h>
  38. #include <netinet/in.h>
  39. #include <arpa/inet.h>
  40. #include <unistd.h>
  41. #include <fcntl.h>
  42. #include <stdlib.h>
  43. #include <stdio.h>
  44. #include <errno.h>
  45. #include <signal.h>
  46. #include <sched.h>
  47. #include <time.h>
  48. #include <pthread.h>
  49. #include <sys/poll.h>
  50. #include <string.h>
  51. #if defined(OPENAIS_LINUX) || defined(OPENAIS_SOLARIS)
  52. /* SUN_LEN is broken for abstract namespace
  53. */
  54. #define AIS_SUN_LEN(a) sizeof(*(a))
  55. #else
  56. #define AIS_SUN_LEN(a) SUN_LEN(a)
  57. #endif
  58. #ifdef OPENAIS_LINUX
  59. static char *socketname = "lcr.socket";
  60. #else
  61. static char *socketname = "/var/run/lcr.socket";
  62. #endif
  63. int uic_connect (int *fd)
  64. {
  65. int res;
  66. struct sockaddr_un addr;
  67. memset (&addr, 0, sizeof (struct sockaddr_un));
  68. #if defined(OPENAIS_BSD) || defined(OPENAIS_DARWIN)
  69. addr.sun_len = sizeof(struct sockaddr_un);
  70. #endif
  71. addr.sun_family = PF_UNIX;
  72. #if defined(OPENAIS_LINUX)
  73. strcpy (addr.sun_path + 1, socketname);
  74. #else
  75. strcpy (addr.sun_path, socketname);
  76. #endif
  77. *fd = socket (PF_UNIX, SOCK_STREAM, 0);
  78. if (*fd == -1) {
  79. return -errno;
  80. }
  81. res = connect (*fd, (struct sockaddr *)&addr, AIS_SUN_LEN(&addr));
  82. if (res == -1) {
  83. return -errno;
  84. }
  85. return 0;
  86. }
  87. struct req_msg {
  88. int len;
  89. char msg[0];
  90. };
  91. int uic_msg_send (int fd, char *msg)
  92. {
  93. struct msghdr msg_send;
  94. struct iovec iov_send[2];
  95. struct req_msg req_msg;
  96. int res;
  97. req_msg.len = strlen (msg) + 1;
  98. iov_send[0].iov_base = (void *)&req_msg;
  99. iov_send[0].iov_len = sizeof (struct req_msg);
  100. iov_send[1].iov_base = (void *)msg;
  101. iov_send[1].iov_len = req_msg.len;
  102. msg_send.msg_iov = iov_send;
  103. msg_send.msg_iovlen = 2;
  104. msg_send.msg_name = 0;
  105. msg_send.msg_namelen = 0;
  106. #ifndef OPENAIS_SOLARIS
  107. msg_send.msg_control = 0;
  108. msg_send.msg_controllen = 0;
  109. msg_send.msg_flags = 0;
  110. #else
  111. msg_send.msg_accrights = NULL;
  112. msg_send.msg_accrightslen = 0;
  113. #endif
  114. retry_send:
  115. res = sendmsg (fd, &msg_send, 0);
  116. if (res == -1 && errno == EINTR) {
  117. goto retry_send;
  118. }
  119. if (res == -1) {
  120. res = -errno;
  121. }
  122. return (res);
  123. }
  124. int main (void)
  125. {
  126. int client_fd;
  127. int res;
  128. res = uic_connect (&client_fd);
  129. if (res != 0) {
  130. printf ("Couldn't connect to live replacement service\n");
  131. }
  132. uic_msg_send (client_fd, "livereplace ckpt version 2");
  133. return 0;
  134. }