File: test-socket-activation.c

package info (click to toggle)
nbdkit 1.42.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,696 kB
  • sloc: ansic: 59,224; sh: 16,793; makefile: 6,463; python: 1,837; cpp: 1,116; ml: 504; perl: 502; tcl: 62
file content (239 lines) | stat: -rw-r--r-- 6,356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/* nbdkit
 * Copyright Red Hat
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 * * Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 * * Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the distribution.
 *
 * * Neither the name of Red Hat nor the names of its contributors may be
 * used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

/* Test socket activation.
 *
 * We cannot use the test framework for this since the framework
 * always uses the -U flag which is incompatible with socket
 * activation.  Unfortunately this does mean we duplicate some code
 * from the test framework.
 *
 * It's *almost* possible to test this from a shell script
 * (cf. test-ip.sh) but as far as I can tell setting LISTEN_PID
 * correctly is impossible from shell.
 */

#include <config.h>

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>
#include <errno.h>
#include <sys/types.h>

#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif

#ifdef HAVE_SYS_UN_H
#include <sys/un.h>
#endif

#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif

#include "byte-swapping.h"
#include "nbd-protocol.h"

#ifndef SOCK_CLOEXEC
/* For this file, we don't care if fds are marked cloexec; leaking is okay.  */
#define SOCK_CLOEXEC 0
#endif

#define FIRST_SOCKET_ACTIVATION_FD 3

#define NBDKIT_START_TIMEOUT 30 /* seconds */

/* Declare program_name. */
#if HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME == 1
#include <errno.h>
#define program_name program_invocation_short_name
#else
#define program_name "nbdkit"
#endif

static char tmpdir[] =   "/tmp/nbdkitXXXXXX";
static char sockpath[] = "/tmp/nbdkitXXXXXX/sock";
static char pidpath[] =  "/tmp/nbdkitXXXXXX/pid";

static pid_t pid = 0;

static void
cleanup (void)
{
  if (pid > 0)
    kill (pid, SIGTERM);

  unlink (pidpath);
  unlink (sockpath);
  rmdir (tmpdir);
}

int
main (int argc, char *argv[])
{
  int sock;
  struct sockaddr_un addr;
  char pid_str[16];
  size_t i, len;
  uint64_t magic;

  if (mkdtemp (tmpdir) == NULL) {
    perror ("mkdtemp");
    exit (EXIT_FAILURE);
  }
  len = strlen (tmpdir);
  memcpy (sockpath, tmpdir, len);
  memcpy (pidpath, tmpdir, len);

  atexit (cleanup);

  /* Open the listening socket which will be passed into nbdkit. */
  sock = socket (AF_UNIX, SOCK_STREAM /* NB do not use SOCK_CLOEXEC */, 0);
  if (sock == -1) {
    perror ("socket");
    exit (EXIT_FAILURE);
  }

  addr.sun_family = AF_UNIX;
  len = strlen (sockpath);
  memcpy (addr.sun_path, sockpath, len+1 /* trailing \0 */);

  if (bind (sock, (struct sockaddr *) &addr, sizeof addr) == -1) {
    perror (sockpath);
    exit (EXIT_FAILURE);
  }

  if (listen (sock, 1) == -1) {
    perror ("listen");
    exit (EXIT_FAILURE);
  }

  if (sock != FIRST_SOCKET_ACTIVATION_FD) {
    if (dup2 (sock, FIRST_SOCKET_ACTIVATION_FD) == -1) {
      perror ("dup2");
      exit (EXIT_FAILURE);
    }
    close (sock);
  }

  /* Run nbdkit. */
  pid = fork ();
  if (pid == -1) {
    perror ("fork");
    exit (EXIT_FAILURE);
  }
  if (pid == 0) {
    /* Run nbdkit in the child. */
    setenv ("LISTEN_FDS", "1", 1);
    snprintf (pid_str, sizeof pid_str, "%d", (int) getpid ());
    setenv ("LISTEN_PID", pid_str, 1);

    execlp ("nbdkit",
            "nbdkit",
            "-P", pidpath,
            "-o",
            "-v",
            "example1", NULL);
    perror ("exec: nbdkit");
    _exit (EXIT_FAILURE);
  }

  /* We don't need the listening socket now. */
  close (sock);

  /* Wait for the pidfile to turn up, which indicates that nbdkit has
   * started up successfully and is ready to serve requests.  However
   * if 'pid' exits in this time it indicates a failure to start up.
   * Also there is a timeout in case nbdkit hangs.
   */
  for (i = 0; i < NBDKIT_START_TIMEOUT; ++i) {
    if (waitpid (pid, NULL, WNOHANG) == pid)
      goto early_exit;

    if (kill (pid, 0) == -1) {
      if (errno == ESRCH) {
      early_exit:
        fprintf (stderr,
                 "%s FAILED: nbdkit exited before starting to serve files\n",
                 program_name);
        pid = 0;
        exit (EXIT_FAILURE);
      }
      perror ("kill");
    }

    if (access (pidpath, F_OK) == 0)
      break;

    sleep (1);
  }

  /* Now nbdkit is supposed to be listening on the Unix domain socket
   * (which it got via the listening socket that we passed down to it,
   * not from the path), so we should be able to connect to the Unix
   * domain socket by its path and receive an NBD magic string.
   */
  sock = socket (AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0);
  if (sock == -1) {
    perror ("socket");
    exit (EXIT_FAILURE);
  }

  /* Reuse addr which was set up above. */
  if (connect (sock, (struct sockaddr *) &addr, sizeof addr) == -1) {
    perror (sockpath);
    exit (EXIT_FAILURE);
  }

  if (read (sock, &magic, sizeof magic) != sizeof magic) {
    perror ("read");
    exit (EXIT_FAILURE);
  }

  if (be64toh (magic) != NBD_MAGIC) {
    fprintf (stderr, "%s FAILED: did not read magic string from server\n",
             program_name);
    exit (EXIT_FAILURE);
  }

  close (sock);

  /* Test succeeded. */
  exit (EXIT_SUCCESS);
}