WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] tools: disable lomount and miniterm by de

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] tools: disable lomount and miniterm by default
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 17 Jan 2008 15:20:32 -0800
Delivery-date: Thu, 17 Jan 2008 15:21:13 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1200583118 0
# Node ID acb35c1088fda17894763fbc9fc075b86da1e3d8
# Parent  2773cdbecda5cc6233f046b59898017307f8a922
tools: disable lomount and miniterm by default

lomount is a tool which reads and parses a partition table in a disk
image block device and then uses mount -o ...offset=... to mount it.
This is not an ideal approach.  For example, if the intended
filesystem has corrupted metadata the kernel's filesystem driver may
start to write outside of the intended region.  This might even be
exploitable in some perverse circumstances.

Nowadays people wanting to do this should use kpartx, which uses
devmapper to create appropriate range mappings.  So lomount should be
disabled.

miniterm may well be useful but it is a clone-and-hack of an upstream
project and is currently built but not installed by default, partly
because it doesn't make sense to install on the dom0 which it might be
trying to debug.

It is probably useful to retain these two programs in the source tree
but IMO they should no longer be built by default.

The attached patch does these things:
 * CONFIG_LOMOUNT and CONFIG_MINITERM in Config.mk
   can enable and disable these programs
 * They are disabled by default
 * If CONFIG_MINITERM=y it is still built but not installed.
   make -C tools/misc/miniterm install  will install it.

Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
---
 Config.mk                    |    2 ++
 tools/misc/Makefile          |   14 +++++++-------
 tools/misc/lomount/Makefile  |    2 +-
 tools/misc/miniterm/Makefile |    3 +++
 4 files changed, 13 insertions(+), 8 deletions(-)

diff -r 2773cdbecda5 -r acb35c1088fd Config.mk
--- a/Config.mk Thu Jan 17 15:17:22 2008 +0000
+++ b/Config.mk Thu Jan 17 15:18:38 2008 +0000
@@ -88,5 +88,7 @@ VTPM_TOOLS         ?= n
 VTPM_TOOLS         ?= n
 LIBXENAPI_BINDINGS ?= n
 PYTHON_TOOLS       ?= y
+CONFIG_MINITERM    ?= n
+CONFIG_LOMOUNT     ?= n
 
 -include $(XEN_ROOT)/.config
diff -r 2773cdbecda5 -r acb35c1088fd tools/misc/Makefile
--- a/tools/misc/Makefile       Thu Jan 17 15:17:22 2008 +0000
+++ b/tools/misc/Makefile       Thu Jan 17 15:18:38 2008 +0000
@@ -13,6 +13,10 @@ TARGETS-$(CONFIG_X86) += xen-detect
 TARGETS-$(CONFIG_X86) += xen-detect
 TARGETS := $(TARGETS-y)
 
+SUBDIRS-$(CONFIG_LOMOUNT) += lomount
+SUBDIRS-$(CONFIG_MINITERM) += miniterm
+SUBDIRS := $(SUBDIRS-y)
+
 INSTALL_BIN  = $(TARGETS) xencons
 INSTALL_SBIN = netfix xm xen-bugtool xen-python-path xend xenperf xsview
 
@@ -21,8 +25,7 @@ all: build
 
 .PHONY: build
 build: $(TARGETS)
-       $(MAKE) -C miniterm
-       $(MAKE) -C lomount
+       set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d; done
 
 .PHONY: install
 install: build
@@ -30,15 +33,12 @@ install: build
        [ -d $(DESTDIR)/usr/sbin ] || $(INSTALL_DIR) $(DESTDIR)/usr/sbin
        $(INSTALL_PROG) $(INSTALL_BIN) $(DESTDIR)/usr/bin
        $(INSTALL_PROG) $(INSTALL_SBIN) $(DESTDIR)/usr/sbin
-       $(MAKE) -C lomount install
-#       No sense in installing miniterm on the Xen box.
-#      $(MAKE) -C miniterm install
+       set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d install-recurse; done
 
 .PHONY: clean
 clean:
        $(RM) *.o $(TARGETS) *~
-       $(MAKE) -C miniterm clean
-       $(MAKE) -C lomount clean
+       set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d clean; done
 
 %.o: %.c $(HDRS) Makefile
        $(CC) -c $(CFLAGS) -o $@ $<
diff -r 2773cdbecda5 -r acb35c1088fd tools/misc/lomount/Makefile
--- a/tools/misc/lomount/Makefile       Thu Jan 17 15:17:22 2008 +0000
+++ b/tools/misc/lomount/Makefile       Thu Jan 17 15:18:38 2008 +0000
@@ -15,7 +15,7 @@ build: $(BIN)
 build: $(BIN)
 
 .PHONY: install
-install: build
+install install-recurse: build
        $(INSTALL_PROG) $(BIN) $(SCRIPTS) $(DESTDIR)/usr/bin
 
 .PHONY: clean
diff -r 2773cdbecda5 -r acb35c1088fd tools/misc/miniterm/Makefile
--- a/tools/misc/miniterm/Makefile      Thu Jan 17 15:17:22 2008 +0000
+++ b/tools/misc/miniterm/Makefile      Thu Jan 17 15:18:38 2008 +0000
@@ -11,6 +11,9 @@ install: all
        [ -d $(DESTDIR)/usr/bin ] || $(INSTALL_DIR) $(DESTDIR)/usr/bin
        $(INSTALL_PROG) $(TARGET) $(DESTDIR)/usr/bin
 
+.PHONY: install-recurse
+       : No sense in installing miniterm on the Xen box.
+
 .PHONY: clean
 clean:
        $(RM) *.o $(TARGET) *~

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] tools: disable lomount and miniterm by default, Xen patchbot-unstable <=