All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Zeffertt <alex.zeffertt@eu.citrix.com>
To: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Subject: [PATCH 21/24] [xen-unstable.hg] utility for accessing xenstore stubdom console which doesn't use xenstore
Date: Mon, 23 Mar 2009 15:21:32 +0000	[thread overview]
Message-ID: <49C7A8FC.9020706@eu.citrix.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]




[-- Attachment #2: xenconsole_dump --]
[-- Type: text/plain, Size: 4405 bytes --]

This is a very dumb xenconsole backend that does not use xenstore.

Signed-off-by: Diego Ongaro <diego.ongaro@citrix.com>
Signed-off-by: Alex Zeffertt <alex.zeffertt@eu.citrix.com>
---

diff -r 07fb7525c9ce .hgignore
--- a/.hgignore	Thu Mar 19 17:19:07 2009 +0000
+++ b/.hgignore	Fri Mar 20 15:45:44 2009 +0000
@@ -179,6 +179,7 @@
 ^tools/misc/xc_shadow$
 ^tools/misc/xen_cpuperf$
 ^tools/misc/xen-detect$
+^tools/misc/xenconsole_dump$
 ^tools/misc/xenperf$
 ^tools/misc/xenpm$
 ^tools/pygrub/build/.*$
diff -r 07fb7525c9ce tools/misc/Makefile
--- a/tools/misc/Makefile	Thu Mar 19 17:19:07 2009 +0000
+++ b/tools/misc/Makefile	Fri Mar 20 15:45:44 2009 +0000
@@ -10,7 +10,7 @@
 
 HDRS     = $(wildcard *.h)
 
-TARGETS-y := xenperf xenpm
+TARGETS-y := xenperf xenpm xenconsole_dump
 TARGETS-$(CONFIG_X86) += xen-detect
 TARGETS := $(TARGETS-y)
 
@@ -18,7 +18,7 @@
 SUBDIRS-$(CONFIG_MINITERM) += miniterm
 SUBDIRS := $(SUBDIRS-y)
 
-INSTALL_BIN-y := xencons
+INSTALL_BIN-y := xencons xenconsole_dump
 INSTALL_BIN-$(CONFIG_X86) += xen-detect
 INSTALL_BIN := $(INSTALL_BIN-y)
 
@@ -56,4 +56,7 @@
 xenperf xenpm: %: %.o Makefile
 	$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) $(LDFLAGS_libxenctrl)
 
+xenconsole_dump: %: %.o Makefile
+	$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) $(LDFLAGS_libxenctrl)
+
 -include $(DEPS)
diff -r 07fb7525c9ce tools/misc/xenconsole_dump.c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/misc/xenconsole_dump.c	Fri Mar 20 15:45:44 2009 +0000
@@ -0,0 +1,143 @@
+/*
+ * This is a very dumb xenconsole backend that does not use xenstore.
+ *
+ * Copyright 2008, Diego Ongaro <diego.ongaro@citrix.com>
+ *
+ * This file is subject to the terms and conditions of the GNU General
+ * Public License.  See the file "COPYING" in the main directory of
+ * this archive for more details.
+ */
+
+#include <getopt.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <errno.h>
+#include <unistd.h>
+#include <string.h>
+#include <sys/types.h>
+#include <sys/mman.h>
+#include <sys/select.h>
+
+#include <xenctrl.h>
+#include <xen/grant_table.h>
+#include <xen/io/console.h>
+
+
+#define DIE() \
+do { \
+	fprintf(stderr, "DIE in %s at %s:%d\n", __FUNCTION__, __FILE__, __LINE__); \
+	exit(1); \
+} while (0)
+#define DIE_ON(cond) \
+do { \
+	if ((cond)) \
+		DIE(); \
+} while (0)
+
+
+static domid_t domid = -1;
+static evtchn_port_or_error_t remote_port = -1;
+static evtchn_port_or_error_t local_port = -1;
+static struct xencons_interface *intf;
+
+static int xce_handle;
+static int xcg_handle;
+
+static void
+try_dump(void)
+{
+	static char buffer[sizeof(intf->out)];
+	XENCONS_RING_IDX cons, prod, size;
+	int i = 0;
+
+	cons = intf->out_cons;
+	prod = intf->out_prod;
+	xen_mb();
+
+	size = prod - cons;
+	if ((size == 0) || (size > sizeof(intf->out)))
+		return;
+
+	while (cons != prod)
+		buffer[i++] = intf->out[MASK_XENCONS_IDX(cons++, intf->out)];
+
+	xen_mb();
+	intf->out_cons = cons;
+	xc_evtchn_notify(xce_handle, local_port);
+
+	DIE_ON(write(1, buffer, i) != i);
+}
+
+static void
+dump_ring(void)
+{
+	while (1) {
+		DIE_ON(xc_evtchn_pending(xce_handle) == -1);
+		try_dump();
+		DIE_ON(xc_evtchn_unmask(xce_handle, local_port) == -1);
+	}
+}
+
+static void
+setup(void)
+{
+	xce_handle = xc_evtchn_open();
+	DIE_ON(xce_handle == -1);
+
+	xcg_handle = xc_gnttab_open();
+	DIE_ON(xcg_handle == -1);
+
+	intf = xc_gnttab_map_grant_ref(xcg_handle,
+	                               domid,
+	                               GNTTAB_RESERVED_CONSOLE,
+	                               PROT_READ|PROT_WRITE);
+	DIE_ON(intf == NULL);
+
+	local_port = xc_evtchn_bind_interdomain(xce_handle, domid, remote_port);
+	DIE_ON(local_port == -1);
+
+}
+
+static void
+usage(char *name)
+{
+	printf("Usage: %s [-h] --domid=DOMID --remote-port=PORT\n", name);
+}
+
+int
+main(int argc, char **argv)
+{
+	const char *sopts = "h";
+	struct option lopts[] = {
+		{ "help", 0, 0, 'h' },
+		{ "domid", 1, 0, 'D'},
+		{ "remote-port", 1, 0, 'P'},
+		{ 0 },
+	};
+	int ch;
+	int opt_ind = 0;
+
+	while ((ch = getopt_long(argc, argv, sopts, lopts, &opt_ind)) != -1) {
+		switch (ch) {
+		case 'h':
+			usage(argv[0]);
+			exit(0);
+		case 'D':
+			domid = (domid_t) atoi(optarg);
+			break;
+		case 'P':
+			remote_port = (evtchn_port_or_error_t) atoi(optarg);
+			break;
+		}
+	}
+
+	if (domid <= 0 || remote_port < 0) {
+		usage(argv[0]);
+		exit(1);
+	}
+
+	setup();
+	dump_ring();
+
+	return 0;
+}



[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

             reply	other threads:[~2009-03-23 15:21 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-23 15:21 Alex Zeffertt [this message]
2009-06-10 15:22 ` [PATCH 21/24] [xen-unstable.hg] utility for accessing xenstore stubdom console which doesn't use xenstore Alex Zeffertt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=49C7A8FC.9020706@eu.citrix.com \
    --to=alex.zeffertt@eu.citrix.com \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.