harddog_user.c 2.4 KB
Newer Older
1
/*
2
 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
3 4 5 6 7 8 9
 * Licensed under the GPL
 */

#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include "os.h"
10
#include "user.h"
L
Linus Torvalds 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24

struct dog_data {
	int stdin;
	int stdout;
	int close_me[2];
};

static void pre_exec(void *d)
{
	struct dog_data *data = d;

	dup2(data->stdin, 0);
	dup2(data->stdout, 1);
	dup2(data->stdout, 2);
25 26 27 28
	close(data->stdin);
	close(data->stdout);
	close(data->close_me[0]);
	close(data->close_me[1]);
L
Linus Torvalds 已提交
29 30 31 32 33 34 35 36
}

int start_watchdog(int *in_fd_ret, int *out_fd_ret, char *sock)
{
	struct dog_data data;
	int in_fds[2], out_fds[2], pid, n, err;
	char pid_buf[sizeof("nnnnn\0")], c;
	char *pid_args[] = { "/usr/bin/uml_watchdog", "-pid", pid_buf, NULL };
37
	char *mconsole_args[] = { "/usr/bin/uml_watchdog", "-mconsole", NULL,
L
Linus Torvalds 已提交
38 39 40 41
				  NULL };
	char **args = NULL;

	err = os_pipe(in_fds, 1, 0);
42
	if (err < 0) {
L
Linus Torvalds 已提交
43 44 45 46 47
		printk("harddog_open - os_pipe failed, err = %d\n", -err);
		goto out;
	}

	err = os_pipe(out_fds, 1, 0);
48
	if (err < 0) {
L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56 57
		printk("harddog_open - os_pipe failed, err = %d\n", -err);
		goto out_close_in;
	}

	data.stdin = out_fds[0];
	data.stdout = in_fds[1];
	data.close_me[0] = out_fds[1];
	data.close_me[1] = in_fds[0];

58
	if (sock != NULL) {
L
Linus Torvalds 已提交
59 60 61 62 63
		mconsole_args[2] = sock;
		args = mconsole_args;
	}
	else {
		/* XXX The os_getpid() is not SMP correct */
J
Jeff Dike 已提交
64
		sprintf(pid_buf, "%d", os_getpid());
L
Linus Torvalds 已提交
65 66 67
		args = pid_args;
	}

J
Jeff Dike 已提交
68
	pid = run_helper(pre_exec, &data, args);
L
Linus Torvalds 已提交
69

70 71
	close(out_fds[0]);
	close(in_fds[1]);
L
Linus Torvalds 已提交
72

73
	if (pid < 0) {
L
Linus Torvalds 已提交
74 75 76 77 78
		err = -pid;
		printk("harddog_open - run_helper failed, errno = %d\n", -err);
		goto out_close_out;
	}

79 80
	n = read(in_fds[0], &c, sizeof(c));
	if (n == 0) {
L
Linus Torvalds 已提交
81
		printk("harddog_open - EOF on watchdog pipe\n");
82
		helper_wait(pid, 1, NULL);
L
Linus Torvalds 已提交
83 84 85
		err = -EIO;
		goto out_close_out;
	}
86
	else if (n < 0) {
L
Linus Torvalds 已提交
87
		printk("harddog_open - read of watchdog pipe failed, "
88
		       "err = %d\n", errno);
89
		helper_wait(pid, 1, NULL);
L
Linus Torvalds 已提交
90 91 92 93 94
		err = n;
		goto out_close_out;
	}
	*in_fd_ret = in_fds[0];
	*out_fd_ret = out_fds[1];
95
	return 0;
L
Linus Torvalds 已提交
96 97

 out_close_in:
98 99
	close(in_fds[0]);
	close(in_fds[1]);
L
Linus Torvalds 已提交
100
 out_close_out:
101 102
	close(out_fds[0]);
	close(out_fds[1]);
L
Linus Torvalds 已提交
103
 out:
104
	return err;
L
Linus Torvalds 已提交
105 106 107 108
}

void stop_watchdog(int in_fd, int out_fd)
{
109 110
	close(in_fd);
	close(out_fd);
L
Linus Torvalds 已提交
111 112 113 114 115 116 117
}

int ping_watchdog(int fd)
{
	int n;
	char c = '\n';

118 119 120 121 122
	n = write(fd, &c, sizeof(c));
	if (n != sizeof(c)) {
		printk("ping_watchdog - write failed, ret = %d, err = %d\n",
		       n, errno);
		if (n < 0)
123 124
			return n;
		return -EIO;
L
Linus Torvalds 已提交
125 126 127 128
	}
	return 1;

}