From patchwork Thu Jul 19 20:15:52 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10535279 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 024A8600F4 for ; Thu, 19 Jul 2018 20:15:58 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D3A6929A0D for ; Thu, 19 Jul 2018 20:15:58 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C7B1129A9D; Thu, 19 Jul 2018 20:15:58 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3A44729A0D for ; Thu, 19 Jul 2018 20:15:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727553AbeGSVAj (ORCPT ); Thu, 19 Jul 2018 17:00:39 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:44528 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727527AbeGSVAj (ORCPT ); Thu, 19 Jul 2018 17:00:39 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=syFHJI6ZbBPHcIUcx9AUPpSlHcQ/GEwJN8Eins1w9KY=; b=TG5gl7K/ogk7Icg5eKETf7bLY 0z1TBOP0OXsw6KCiekI7VMkCo+IsQQ4O4pqt1wyi4l/IqDvCVA9De4xtB1e7I6kNjnYBw1hhkrhKT JkW+v1Ej7BGpohlHJJYBqxzye3o/lzyYEnXyvhic+Q6qkhBWayFl9ZY19Jg/fdEoj9fr/OpEjw4XZ WitXJQnF3S3WcjulN9XBsjxLLMXWm/ABYhOvqppSz+/SmPSdKyRU59fy7xqhvIthpN2gV3K0HZ3L/ 0bkcUzFUdtpOLoHUFrIiFUd9/lKHRZ17NNd+FYT6tBpLCqN+EBZRdT1B9mTE4bRpb/pZop7BUD2RS ctoxFOfVA==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=dragon.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fgFL8-00058I-O6; Thu, 19 Jul 2018 20:15:54 +0000 To: LKML , linux-security-module , James Morris , "Serge E. Hallyn" , "Luis R. Rodriguez" Cc: Greg Kroah-Hartman From: Randy Dunlap Subject: [PATCH] security: export security_kernel_load_data to fix firmware_loader build Message-ID: <7a8dd892-39ec-3973-5f41-5ec23f1feb3f@infradead.org> Date: Thu, 19 Jul 2018 13:15:52 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 Content-Language: en-US Sender: owner-linux-security-module@vger.kernel.org Precedence: bulk List-ID: X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Fix build error when CONFIG_FW_LOADER=m, CONFIG_FW_LOADER_USER_HELPER=y, CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y, and CONFIG_SECURITY=y: ERROR: "security_kernel_load_data" [drivers/base/firmware_loader/firmware_class.ko] undefined! Signed-off-by: Randy Dunlap Cc: James Morris Cc: "Serge E. Hallyn" Cc: linux-security-module@vger.kernel.org Cc: Luis R. Rodriguez --- security/security.c | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-security-module" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-next-20180717.orig/security/security.c +++ linux-next-20180717/security/security.c @@ -1121,6 +1121,7 @@ int security_kernel_load_data(enum kerne return ret; return ima_load_data(id); } +EXPORT_SYMBOL_GPL(security_kernel_load_data); int security_task_fix_setuid(struct cred *new, const struct cred *old, int flags)