From patchwork Tue Aug 18 18:35:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Kuleshov X-Patchwork-Id: 7032781 X-Patchwork-Delegate: jikos@jikos.cz Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id D4F15C05AC for ; Tue, 18 Aug 2015 18:35:50 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D59FE2064B for ; Tue, 18 Aug 2015 18:35:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D4F202062D for ; Tue, 18 Aug 2015 18:35:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752500AbbHRSfq (ORCPT ); Tue, 18 Aug 2015 14:35:46 -0400 Received: from mail-la0-f41.google.com ([209.85.215.41]:34409 "EHLO mail-la0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752099AbbHRSfp (ORCPT ); Tue, 18 Aug 2015 14:35:45 -0400 Received: by laba3 with SMTP id a3so1479924lab.1; Tue, 18 Aug 2015 11:35:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=tQ87qrrjKvrupt8XKywtwhQweRryHUQ4JwsruThr8Rc=; b=Gq3AC7Bz/Uhere0xnzCIjxzb9Zyr6gmjoJlI0mO2BC1f+KPYFRsjsKkOqmZx7L6P0i E1QX021iCF9vwrZ+o5MD6nvPRWDwDwXyl5EC4ECONiBowJU6+Yob8/J0J0LxumbzFkJO SwRLuMlP8zuUACoVz3r7Ey6l8Ce9QLYdDjMbAFkk1YbTHgCtzZt+6jooN6ttwa2wpsMI 5RdR2ktWQ4PFeE8Q1xZIhbGipTjU0IBnKdv+3vLoZxwj4qE9NTmzhfLLOj2ZWcwejER/ x01zh8yBWufWrYBOgLp7bCD9wOCsYeXtmuNbci9T4Y6dC2hFGvsO8dVkdpGpSRtwrUQA nk+Q== X-Received: by 10.112.159.1 with SMTP id wy1mr7675370lbb.55.1439922943038; Tue, 18 Aug 2015 11:35:43 -0700 (PDT) Received: from localhost.localdomain ([147.30.78.220]) by smtp.gmail.com with ESMTPSA id f1sm5110869laf.15.2015.08.18.11.35.41 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 18 Aug 2015 11:35:41 -0700 (PDT) From: Alexander Kuleshov To: Jiri Kosina Cc: Henrik Rydberg , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Alexander Kuleshov Subject: [PATCH v2] drivers/hid: Check result of debugfs_create_dir() and debugfs_create_file() Date: Wed, 19 Aug 2015 00:35:09 +0600 Message-Id: <1439922909-18452-1-git-send-email-kuleshovmail@gmail.com> X-Mailer: git-send-email 2.5.0 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham 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 The debugfs_create_dir() and debugfs_create_file() functions may return -errno if an error occurs. This patch adds a couple of checks of the result of the debufs_create_dir() and debugfs_create_file() functions execution in the hid_debug_register() and othre places. Changelog: v2: * add check for the result of the debugfs_create_file() calls * call hid_debug_init() and hid_debug_exit() only if hid_debug * add check for the hid_debug_root in the hid_debug_register() Signed-off-by: Alexander Kuleshov --- drivers/hid/hid-core.c | 15 ++++++++++----- drivers/hid/hid-debug.c | 38 ++++++++++++++++++++++++++++++++++---- 2 files changed, 44 insertions(+), 9 deletions(-) diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index e6fce23..8aa2c20 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c @@ -2599,8 +2599,10 @@ int hid_add_device(struct hid_device *hdev) ret = device_add(&hdev->dev); if (!ret) hdev->status |= HID_STAT_ADDED; - else - hid_debug_unregister(hdev); + else { + if (hdev->debug) + hid_debug_unregister(hdev); + } return ret; } @@ -2644,7 +2646,8 @@ static void hid_remove_device(struct hid_device *hdev) { if (hdev->status & HID_STAT_ADDED) { device_del(&hdev->dev); - hid_debug_unregister(hdev); + if (hdev->debug) + hid_debug_unregister(hdev); hdev->status &= ~HID_STAT_ADDED; } kfree(hdev->dev_rdesc); @@ -2737,7 +2740,8 @@ static int __init hid_init(void) if (ret) goto err_bus; - hid_debug_init(); + if (hid_debug) + hid_debug_init(); return 0; err_bus: @@ -2748,7 +2752,8 @@ err: static void __exit hid_exit(void) { - hid_debug_exit(); + if (hid_debug) + hid_debug_exit(); hidraw_exit(); bus_unregister(&hid_bus_type); } diff --git a/drivers/hid/hid-debug.c b/drivers/hid/hid-debug.c index 2886b64..5db1e6e 100644 --- a/drivers/hid/hid-debug.c +++ b/drivers/hid/hid-debug.c @@ -1222,30 +1222,60 @@ static const struct file_operations hid_debug_events_fops = { void hid_debug_register(struct hid_device *hdev, const char *name) { + if (!hid_debug_root) + goto debugfs_root_error + hdev->debug_dir = debugfs_create_dir(name, hid_debug_root); + + if (!hdev->debug_dir) { + printk(KERN_WARNING "Could not create '%s' debugfs directory\n", + name); + return; + } + hdev->debug_rdesc = debugfs_create_file("rdesc", 0400, hdev->debug_dir, hdev, &hid_debug_rdesc_fops); + if (!hdev->debug_rdesc) { + printk(KERN_WARNING "Could not create rdesc debugfs file\n"); + goto error + } + hdev->debug_events = debugfs_create_file("events", 0400, hdev->debug_dir, hdev, &hid_debug_events_fops); + if (!hdev->debug_events) { + printk(KERN_WARNING "Could not create events debugfs file\n"); + goto error + } + hdev->debug = 1; + + return; + +error: + debugfs_remove_recursive(hdev->debug_dir); + return; + +debugfs_root_error: + return; } void hid_debug_unregister(struct hid_device *hdev) { hdev->debug = 0; wake_up_interruptible(&hdev->debug_wait); - debugfs_remove(hdev->debug_rdesc); - debugfs_remove(hdev->debug_events); - debugfs_remove(hdev->debug_dir); + debugfs_remove_recursive(hdev->debug_dir); } void hid_debug_init(void) { hid_debug_root = debugfs_create_dir("hid", NULL); + if (!hid_debug_root) + printk(KERN_WARNING "Could not create root 'hid' debugfs directory\n"); } void hid_debug_exit(void) { - debugfs_remove_recursive(hid_debug_root); + if (hid_debug_root) + debugfs_remove_recursive(hid_debug_root); }