--- /dev/null
+Return-Path: <novalazy@gmail.com>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by olra.theworths.org (Postfix) with ESMTP id 3CE18431FDB\r
+ for <notmuch@notmuchmail.org>; Sat, 19 Jan 2013 16:51:42 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -0.799\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5\r
+ tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,\r
+ FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+ by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id qXDT7WQbqaks for <notmuch@notmuchmail.org>;\r
+ Sat, 19 Jan 2013 16:51:41 -0800 (PST)\r
+Received: from mail-da0-f49.google.com (mail-da0-f49.google.com\r
+ [209.85.210.49]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
+ (No client certificate requested)\r
+ by olra.theworths.org (Postfix) with ESMTPS id A5217429E29\r
+ for <notmuch@notmuchmail.org>; Sat, 19 Jan 2013 16:51:27 -0800 (PST)\r
+Received: by mail-da0-f49.google.com with SMTP id v40so2153966dad.22\r
+ for <notmuch@notmuchmail.org>; Sat, 19 Jan 2013 16:51:26 -0800 (PST)\r
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;\r
+ h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to\r
+ :references; bh=1yohSKjaez2Nd4GI903tIxQiuqcgfD7ugXonbEfpM8k=;\r
+ b=IqMEcDEbPCJGC7du67MFw3aEGBKKD+Ze2WaEmXDZ4DoISkQUKNCcFOMCf8gaDJromE\r
+ O45uIjVjYkX+9HKEkkLhstvZbMMuC6lLg5lWstEVnGNzBFYcNfND/Zvcx8rQm0wgCzTu\r
+ 7wI5rSC/Y60Wp7/LfQRlyNaSzTImg1Zlwj5uT2mH9Ol2QDVoBbEoaGlEGLcQixAtVB/Y\r
+ Kfe1JleeL+/EXNZ4ZVdb6a2OKxibmgYvwWVH01u4Qe9sb+8FKQMzflQhssoHV1kYU6/l\r
+ QRC0/4xzH5PLfM/HQnmAy9DD12CdZSc4TzHQymhO3AUu3o5pY49K5rtTG+kLkcb/u7ws\r
+ YsMA==\r
+X-Received: by 10.68.231.10 with SMTP id tc10mr18398405pbc.81.1358643086760;\r
+ Sat, 19 Jan 2013 16:51:26 -0800 (PST)\r
+Received: from localhost (215.42.233.220.static.exetel.com.au.\r
+ [220.233.42.215])\r
+ by mx.google.com with ESMTPS id ti9sm5807538pbc.16.2013.01.19.16.51.24\r
+ (version=TLSv1.2 cipher=RC4-SHA bits=128/128);\r
+ Sat, 19 Jan 2013 16:51:26 -0800 (PST)\r
+From: Peter Wang <novalazy@gmail.com>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH v3 11/20] insert: prevent writes outside Maildir hierarchy\r
+Date: Sun, 20 Jan 2013 11:49:55 +1100\r
+Message-Id: <1358643004-14522-12-git-send-email-novalazy@gmail.com>\r
+X-Mailer: git-send-email 1.7.12.1\r
+In-Reply-To: <1358643004-14522-1-git-send-email-novalazy@gmail.com>\r
+References: <1358643004-14522-1-git-send-email-novalazy@gmail.com>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 20 Jan 2013 00:51:42 -0000\r
+\r
+Don't accept a --folder name that contains a ".." component,\r
+in order to prevent writing outside of the Maildir hierarchy.\r
+---\r
+ notmuch-insert.c | 21 +++++++++++++++++++++\r
+ 1 file changed, 21 insertions(+)\r
+\r
+diff --git a/notmuch-insert.c b/notmuch-insert.c\r
+index ba8cf5a..67ef94a 100644\r
+--- a/notmuch-insert.c\r
++++ b/notmuch-insert.c\r
+@@ -39,6 +39,23 @@ safe_gethostname (char *hostname, size_t len)\r
+ return (strchr (hostname, '/') == NULL);\r
+ }\r
+ \r
++/* Check the specified folder name does not contain a directory\r
++ * component ".." to prevent writes outside of the Maildir hierarchy. */\r
++static notmuch_bool_t\r
++check_folder_name (const char *folder)\r
++{\r
++ const char *p = folder;\r
++\r
++ for (;;) {\r
++ if ((p[0] == '.') && (p[1] == '.') && (p[2] == '\0' || p[2] == '/'))\r
++ return FALSE;\r
++ p = strchr (p, '/');\r
++ if (!p)\r
++ return TRUE;\r
++ p++;\r
++ }\r
++}\r
++\r
+ /* Open a unique file in the Maildir 'tmp' directory.\r
+ * Returns the file descriptor on success, or -1 on failure.\r
+ * On success, file paths for the message in the 'tmp' and 'new'\r
+@@ -282,6 +299,10 @@ notmuch_insert_command (void *ctx, int argc, char *argv[])\r
+ }\r
+ \r
+ if (folder != NULL) {\r
++ if (! check_folder_name (folder)) {\r
++ fprintf (stderr, "Error: bad folder name: %s\n", folder);\r
++ return 1;\r
++ }\r
+ maildir = talloc_asprintf (ctx, "%s/%s", db_path, folder);\r
+ } else {\r
+ maildir = talloc_asprintf (ctx, "%s", db_path);\r
+-- \r
+1.7.12.1\r
+\r