From patchwork Tue Jul 22 09:14:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: AKASHI Takahiro X-Patchwork-Id: 4600311 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 69B739F375 for ; Tue, 22 Jul 2014 09:18:45 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 13D4D20125 for ; Tue, 22 Jul 2014 09:18:40 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 42561200E7 for ; Tue, 22 Jul 2014 09:18:39 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1X9WBK-0007Ts-Jm; Tue, 22 Jul 2014 09:16:22 +0000 Received: from mail-pa0-f50.google.com ([209.85.220.50]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1X9WBD-0007JH-OO for linux-arm-kernel@lists.infradead.org; Tue, 22 Jul 2014 09:16:20 +0000 Received: by mail-pa0-f50.google.com with SMTP id et14so11738105pad.9 for ; Tue, 22 Jul 2014 02:15:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=0zvywfIQntKeZJKnkQ9CzG0MWh7VAOg1Sv8PPfN+LC4=; b=dmLw/XW+CKN2hdYI/wazzexqRjsPjXfsVLzOQwXZ2gBLMLgsSruSEeYufMhFoBkzsO iVzGoQjXGf7TAOSjSb/FUBr45lbxsKIhhQ7VYVa59mbddxIXo6BYIB7m9n3RUQ3EdmGR /V7HkOUIasaZSZkqX/jqome9k+IZ4eV7dCN/G4DBiulfQB0w70Xxa1zMpkxGGdIx8iFJ rFhaE9Bej/JBYyMLdswe2bn51cpEpWAyZrrQlifJLBB7VOHIjTS1tP23od3lB/i5el+X pRUR/24kIJGgexclIaD3IWrxOKwdeNQjdnBUTF/AGSgfkZ3v0+LJ7Bw1oj469JosPdKO hc9g== X-Gm-Message-State: ALoCoQnktaL7EXGrX54sWNSjpnQALTocsCqpuIVw8xKRzfs6UaVjJ8/Z5nu+ihc/76YQVdk1WRAC X-Received: by 10.68.69.71 with SMTP id c7mr20863479pbu.43.1406020554792; Tue, 22 Jul 2014 02:15:54 -0700 (PDT) Received: from localhost.localdomain (KD182249094163.au-net.ne.jp. [182.249.94.163]) by mx.google.com with ESMTPSA id v1sm12071461pbs.1.2014.07.22.02.15.50 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 22 Jul 2014 02:15:53 -0700 (PDT) From: AKASHI Takahiro To: wad@chromium.org, catalin.marinas@arm.com, will.deacon@arm.com, keescook@chromium.org Subject: [PATCH v5 2/3] asm-generic: Add generic seccomp.h for secure computing mode 1 Date: Tue, 22 Jul 2014 18:14:58 +0900 Message-Id: <1406020499-5537-3-git-send-email-takahiro.akashi@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1406020499-5537-1-git-send-email-takahiro.akashi@linaro.org> References: <1406020499-5537-1-git-send-email-takahiro.akashi@linaro.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140722_021615_810632_ECEA38A6 X-CRM114-Status: GOOD ( 10.19 ) X-Spam-Score: -0.7 (/) Cc: AKASHI Takahiro , dsaxena@linaro.org, linaro-kernel@lists.linaro.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Those values (__NR_seccomp_*) are used solely in secure_computing() to identify mode 1 system calls. If compat system calls have different syscall numbers, asm/seccomp.h may override them. Acked-by: Arnd Bergmann Signed-off-by: AKASHI Takahiro --- include/asm-generic/seccomp.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 include/asm-generic/seccomp.h diff --git a/include/asm-generic/seccomp.h b/include/asm-generic/seccomp.h new file mode 100644 index 0000000..5e97022 --- /dev/null +++ b/include/asm-generic/seccomp.h @@ -0,0 +1,28 @@ +/* + * include/asm-generic/seccomp.h + * + * Copyright (C) 2014 Linaro Limited + * Author: AKASHI Takahiro + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ +#ifndef _ASM_GENERIC_SECCOMP_H +#define _ASM_GENERIC_SECCOMP_H + +#include + +#if defined(CONFIG_COMPAT) && !defined(__NR_seccomp_read_32) +#define __NR_seccomp_read_32 __NR_read +#define __NR_seccomp_write_32 __NR_write +#define __NR_seccomp_exit_32 __NR_exit +#define __NR_seccomp_sigreturn_32 __NR_rt_sigreturn +#endif /* CONFIG_COMPAT && ! already defined */ + +#define __NR_seccomp_read __NR_read +#define __NR_seccomp_write __NR_write +#define __NR_seccomp_exit __NR_exit +#define __NR_seccomp_sigreturn __NR_rt_sigreturn + +#endif /* _ASM_GENERIC_SECCOMP_H */