From owner-freebsd-virtualization@freebsd.org Thu Oct 8 15:09:45 2015 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B8D29D29FC for ; Thu, 8 Oct 2015 15:09:45 +0000 (UTC) (envelope-from sam@cassiba.com) Received: from mail-lb0-f179.google.com (mail-lb0-f179.google.com [209.85.217.179]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ACEFBEE9 for ; Thu, 8 Oct 2015 15:09:44 +0000 (UTC) (envelope-from sam@cassiba.com) Received: by lbbwt4 with SMTP id wt4so50602725lbb.1 for ; Thu, 08 Oct 2015 08:09:42 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to :content-type; bh=aMdCo2auhLdCFTs8kykoSyn4T7xYYAqK6NDbwnNqw7o=; b=hN4KTGxEZb6bYowP4Cqd2L4SlgDaxojbObNfiCUhToJ2QA5X7VF+XqWix9HlON9us0 8rrXRNdB/ZTPGl03NhEHDoo7O9hrI17U6DwWdZel4htreSxcFq/AaVD7lBz2/+48hxUf 59sN1OExA8TMM5WWtbQD2lOPp23o4H1x0/zn6uz2JUB/mrsMzleR6x08num5XfXOK+qc uifjPscjhwhdJav3rINaEaQ2fp7p6imDy0Ko0IbKeUCZ0kz7ejRY8wvKXBMiNP/8LsAi 2VNZBuFXvZEl2QvKyANHzqu4gpifeqjiqFHhZF/5MpMXUDrQZXq1JocI+i+KT4QPYTO0 AgOQ== X-Gm-Message-State: ALoCoQkz+B/PPCfrTTA0HjodJByWT7vbiD0MNaz3/6Oet4ktY7x0fZq5DnhZ+GxpYtW4dxZNgTpH MIME-Version: 1.0 X-Received: by 10.112.130.70 with SMTP id oc6mr4021098lbb.32.1444316982099; Thu, 08 Oct 2015 08:09:42 -0700 (PDT) Received: by 10.25.213.77 with HTTP; Thu, 8 Oct 2015 08:09:42 -0700 (PDT) X-Originating-IP: [73.222.130.108] Date: Thu, 8 Oct 2015 08:09:42 -0700 Message-ID: Subject: Docker crashes on HEAD From: Samuel Cassiba To: freebsd-virtualization@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Oct 2015 15:09:45 -0000 I've been playing around with Docker on FreeBSD and have encountered some crashiness. When I go to jump in a container using 'docker exec', if I accidentally typo the command, the Docker daemon itself crashes, which leaves the host and any running containers in an inconsistent state. The biggest standout from the logs seems to be: panic: runtime error: invalid memory address or nil pointer dereference [signal 0xb code=0x1 addr=0x1b pc=0x8dadcb] After the Docker daemon is restarted, I am unable to restart existing containers, with Docker saying that the file system is busy. The full output from docker.log after the Docker daemon crashes is at: https://gist.github.com/scassiba/dfdb75361de42b41636c The output from docker.log after attempting to restart the Docker daemon and a container is at: https://gist.github.com/scassiba/abb821563b2e8cb742cc Has anyone seen this on a recent copy of HEAD? Thanks.