All of lore.kernel.org
 help / color / mirror / Atom feed
From: Glenn Washburn <development@efficientek.com>
To: Daniel Kiper <dkiper@net-space.pl>, grub-devel@gnu.org
Cc: Michael Schierl <schierlm@gmx.de>,
	Glenn Washburn <development@efficientek.com>
Subject: [PATCH v3] misc: Allow selective disabling of debug facility names
Date: Fri, 10 Dec 2021 02:13:52 -0600	[thread overview]
Message-ID: <20211210081352.1128144-1-development@efficientek.com> (raw)

Sometimes you know only know which debug logging facility names you want to
turn off, not necessarily all the ones you want enabled. This patch allows
the debug string to contain facility names in the $debug variable which are
prefixed with a "-" to disable debug log messages for that conditional. Say
you want all debug logging on except for btrfs and scripting, then do:
 "set debug=all,-btrfs,-scripting"

Note, that only the last occurence of the facility name with or without a
leading "-" is considered. So simply appending ",-facilityname" to the
$debug variable will disable that conditional. To illustrate, the command
"set debug=all,-btrfs,-scripting,btrfs" will enable btrfs.

Also, add documentation explaining this new behavior.

Signed-off-by: Glenn Washburn <development@efficientek.com>
---
Changes since v2:
* Fix issue where a facility at the start of the string wouldn't be matched

---
Range-diff against v2:
1:  ef2662d0b ! 1:  31439a7fb misc: Allow selective disabling of debug facility names
    @@ grub-core/kern/misc.c: __attribute__ ((alias("grub_printf")));
     -    return 1;
     +  if (grub_strword (debug, "all"))
     +    {
    -+      ret = 1;
     +      if (debug[3] == '\0')
     +	return 1;
    ++      ret = 1;
     +    }
      
     -  return 0;
     +  clen = grub_strlen (condition);
    -+  found = debug;
    ++  found = debug-1;
     +  while(1)
     +    {
     +      found = grub_strstr (found+1, condition);
    @@ grub-core/kern/misc.c: __attribute__ ((alias("grub_printf")));
     +	continue;
     +
     +      /*
    -+       * If found condition is prefixed with '-' and the start is on a word
    ++       * If found condition is at the start of debug, then enable debug. Else
    ++       * if found condition is prefixed with '-' and the start is on a word
     +       * boundary, then disable debug. Otherwise, if the start is on a word
    -+       * boundary, enable debug. If neither, ignore.
    ++       * boundary, enable debug. If none of these cases, ignore.
     +       */
    -+      if (*(found-1) == '-' && ((found == debug + 1) || (*(found-2) == ','
    ++      if (found == debug)
    ++	ret = 1;
    ++      else if (*(found-1) == '-' && ((found == debug + 1) || (*(found-2) == ','
     +			       || grub_isspace (*(found-2)))))
     +	ret = 0;
     +      else if (*(found-1) == ',' || grub_isspace (*(found-1)))

 docs/grub.texi        | 13 ++++++++++---
 grub-core/kern/misc.c | 43 +++++++++++++++++++++++++++++++++++++++----
 2 files changed, 49 insertions(+), 7 deletions(-)

diff --git a/docs/grub.texi b/docs/grub.texi
index 99d0a0149..d13aa6600 100644
--- a/docs/grub.texi
+++ b/docs/grub.texi
@@ -3388,9 +3388,16 @@ processed by commands @command{configfile} (@pxref{configfile}) or @command{norm
 @subsection debug
 
 This variable may be set to enable debugging output from various components
-of GRUB.  The value is a list of debug facility names separated by
-whitespace or @samp{,}, or @samp{all} to enable all available debugging
-output. The facility names are the first argument to grub_dprintf. Consult
+of GRUB. The value is an ordered list of debug facility names separated by
+whitespace or @samp{,}. If the special facility names @samp{all} is present
+then debugging output of all facility names is enabled at the start of
+processing the value of this variable. A facility's debug output can then be
+disabled by prefixing its name with a @samp{-}. The last occurence facility
+name with or without a leading @samp{-} takes precendent over any previous
+occurence. This allows the easy enabling or disabling of facilities by
+appending a @samp{,} and then the facility name with or without the leading
+@samp{-}, which will preserve the state of the rest of the facilities.
+The facility names are the first argument to grub_dprintf. Consult the
 source for more details.
 
 
diff --git a/grub-core/kern/misc.c b/grub-core/kern/misc.c
index 11b8592c8..fda69fe00 100644
--- a/grub-core/kern/misc.c
+++ b/grub-core/kern/misc.c
@@ -162,16 +162,51 @@ __attribute__ ((alias("grub_printf")));
 int
 grub_debug_enabled (const char * condition)
 {
-  const char *debug;
+  const char *debug, *found;
+  grub_size_t clen;
+  int ret = 0;
 
   debug = grub_env_get ("debug");
   if (!debug)
     return 0;
 
-  if (grub_strword (debug, "all") || grub_strword (debug, condition))
-    return 1;
+  if (grub_strword (debug, "all"))
+    {
+      if (debug[3] == '\0')
+	return 1;
+      ret = 1;
+    }
 
-  return 0;
+  clen = grub_strlen (condition);
+  found = debug-1;
+  while(1)
+    {
+      found = grub_strstr (found+1, condition);
+
+      if (found == NULL)
+	break;
+
+      /* Found condition is not a whole word, so ignore it */
+      if (*(found + clen) != '\0' && *(found + clen) != ','
+	 && !grub_isspace (*(found + clen)))
+	continue;
+
+      /*
+       * If found condition is at the start of debug, then enable debug. Else
+       * if found condition is prefixed with '-' and the start is on a word
+       * boundary, then disable debug. Otherwise, if the start is on a word
+       * boundary, enable debug. If none of these cases, ignore.
+       */
+      if (found == debug)
+	ret = 1;
+      else if (*(found-1) == '-' && ((found == debug + 1) || (*(found-2) == ','
+			       || grub_isspace (*(found-2)))))
+	ret = 0;
+      else if (*(found-1) == ',' || grub_isspace (*(found-1)))
+	ret = 1;
+    }
+
+  return ret;
 }
 
 void
-- 
2.27.0



             reply	other threads:[~2021-12-10  8:14 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-10  8:13 Glenn Washburn [this message]
2021-12-10 23:28 ` [PATCH v3] misc: Allow selective disabling of debug facility names Michael Schierl
2021-12-16 17:49 ` Daniel Kiper

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211210081352.1128144-1-development@efficientek.com \
    --to=development@efficientek.com \
    --cc=dkiper@net-space.pl \
    --cc=grub-devel@gnu.org \
    --cc=schierlm@gmx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.