Other Diagnostics
Diagnosing the kernel the other way!
Last updated
Diagnosing the kernel the other way!
Last updated
There are various diagnostic tools that the kernel can make use of, including those listed below.
This is internally used by the kernel debugger and the kernel exception to allow getting information about the source code that generated the call. Currently, this information is provided:
Method name: The routine name that made a call to the class constructor
Line number: The line number of the method described above
Column number: The column number found within the line
File name: The file name of the class that the method situates
When the constructor is called, it generates information about the third stack frame to get the caller's method info. If the frame number is specified, it gets offset by +1
to get info about the needed method.
This method is internally called by the debug writer. If you really want to create an instance of this class, you'll have to use Reflection. The class name is DebugStackFrame
in the Nitrocid.Kernel.Debugging.Trace
namespace.
In the event that the kernel reported a kernel panic in all of the types, whether continuable or uncontinuable, the kernel dump file will be generated under the name of dmp_date_time.txt
in the kernel configuration directory. These files assist us in debugging the severe kernel crashes in case the bug involves this event.
This file includes the following information:
Kernel error code
Error description
In-depth analysis of the error
Stack trace
Nitrocid kernel threads
OS threads spawned by Nitrocid
Threads' backtraces
Version information
The kernel error codes are listed below from the least severe to the most severe:
C
: Indicates that the kernel error is minor, but still serious
S
: Serious kernel error
F
: Fatal kernel error
U
: Unrecoverable kernel error
The first-chance kernel errors of the above types are the first failures. During the error handling, if it encountered a second failure, it escalates the severity of the error to the double panic. Finally, if the double panic handler experiences a third fault, the host operating system will force the kernel to exit.
In case of the third failure events, you can find the event in the Application Events within the Event Viewer if running on Windows or the error directly dumped to the application on Linux.
The kernel exceptions are just normal errors with a generic message intended to display extended information about the error the kernel is experiencing. The kernel exception types and their messages are typically found in this file:
To make a kernel exception, throw a new instance of KernelException
found in the Nitrocid.Kernel.Exceptions
namespace in one of the forms:
public KernelException(KernelExceptionType exceptionType)
public KernelException(KernelExceptionType exceptionType, Exception e)
public KernelException(KernelExceptionType exceptionType, string message)
public KernelException(KernelExceptionType exceptionType, string message, params object[] vars)
public KernelException(KernelExceptionType exceptionType, string message, Exception e)
public KernelException(KernelExceptionType exceptionType, string message, Exception e, params object[] vars)
Typically, the message displays the exception type, the message, and the exception information. As always, if you believe that it's a bug, make an issue in our GitHub repository.
The debug shell allows you to diagnose the kernel in depth. The following commands are available in the below page:
Commands ListIf you're running on Windows 7, threadsbt
is not going to work due to how it uses the PssCaptureSnapshot
Windows API function, which is first introduced on Windows 8.1, which makes this operating system a minimum requirement for using this command.
Additionally, the same command will not work on Android devices and will fail with this error:
Microsoft.Diagnostics.NETCore.Client.ServerNotAvailableException: Process [pid] not running compatible .NET runtime.
//
// Nitrocid KS Copyright (C) 2018-2024 Aptivi
//
// This file is part of Nitrocid KS
//
// Nitrocid KS is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Nitrocid KS is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY, without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
using Nitrocid.Kernel.Debugging;
using Nitrocid.Languages;
using System;
using System.Collections.Generic;
using System.Text;
using Textify.General;
namespace Nitrocid.Kernel.Exceptions
{
internal static class KernelExceptionMessages
{
internal static Dictionary<KernelExceptionType, string> Messages =>
new()
{
{ KernelExceptionType.Unknown, Translate.DoTranslation("There was an unknown kernel error, possibly due to either the kernel exception type not being specified or something was wrong.") },
{ KernelExceptionType.AliasAlreadyExists, Translate.DoTranslation("The specified alias already exists. Make sure that you select a different alias.") },
{ KernelExceptionType.AliasInvalidOperation, Translate.DoTranslation("The alias system encountered an invalid operation trying to process your request.") },
{ KernelExceptionType.AliasNoSuchAlias, Translate.DoTranslation("The specified alias isn't found.") },
{ KernelExceptionType.AliasNoSuchCommand, Translate.DoTranslation("The specified command isn't found to alias to.") },
{ KernelExceptionType.AliasNoSuchType, Translate.DoTranslation("The specified alias type isn't found.") },
{ KernelExceptionType.Color, Translate.DoTranslation("An error occurred while trying to process the color request. Common mistakes include specifying the wrong color specifier.") },
{ KernelExceptionType.Config, Translate.DoTranslation("A kernel configuration error occurred.") },
{ KernelExceptionType.ConsoleReadTimeout, Translate.DoTranslation("User didn't provide any input in a timely fashion.") },
{ KernelExceptionType.Filesystem, Translate.DoTranslation("A general filesystem error occurred. Check to make sure that the path specified is correct, and that the file or directory actually exists.") },
{ KernelExceptionType.FTPFilesystem, Translate.DoTranslation("A general FTP filesystem error occurred. Check to make sure that the path specified is correct, and that the file or directory actually exists.") },
{ KernelExceptionType.FTPNetwork, Translate.DoTranslation("A general FTP network error occurred. Check to make sure that your internet connection is working.") },
{ KernelExceptionType.FTPShell, Translate.DoTranslation("A general FTP shell error occurred.") },
{ KernelExceptionType.GroupManagement, Translate.DoTranslation("A group management error occurred.") },
{ KernelExceptionType.Hostname, Translate.DoTranslation("The kernel networking has reported an error for the hostname component.") },
{ KernelExceptionType.HTTPShell, Translate.DoTranslation("A general HTTP shell error occurred.") },
{ KernelExceptionType.InsaneConsoleDetected, Translate.DoTranslation("Insane console has been detected. Nitrocid KS can't continue running, because your console is incompatible with our requirements.") },
{ KernelExceptionType.InvalidFeed, Translate.DoTranslation("Invalid RSS feed. Ensure that you've referenced the feed correctly and try again.") },
{ KernelExceptionType.InvalidFeedLink, Translate.DoTranslation("Invalid RSS feed link. Ensure that you've entered the link correctly and try again.") },
{ KernelExceptionType.InvalidFeedType, Translate.DoTranslation("Invalid RSS feed type. Ensure that you've entered the feed type correctly and try again.") },
{ KernelExceptionType.InvalidHashAlgorithm, Translate.DoTranslation("Invalid hash algorithm. If you're using a custom hash sum driver, check to make sure that the driver is loaded.") },
{ KernelExceptionType.InvalidHash, Translate.DoTranslation("Invalid hash sum. Check to make sure that you copied and pasted the hash sum correctly. If you're using a custom hash sum driver, check to make sure that the driver is loaded and that it works as expected.") },
{ KernelExceptionType.InvalidKernelPath, Translate.DoTranslation("Invalid kernel path.") },
{ KernelExceptionType.InvalidManpage, Translate.DoTranslation("Invalid manual page. Check to make sure that the mod containing the valid manual pages is loaded.") },
{ KernelExceptionType.InvalidMod, Translate.DoTranslation("Invalid mod. If your mod is a valid .NET assembly, check to make sure that it actually implements the interface that is necessary to start the mod.") },
{ KernelExceptionType.InvalidPath, Translate.DoTranslation("Invalid filesystem path. Check to make sure that it's written correctly.") },
{ KernelExceptionType.InvalidPlaceholder, Translate.DoTranslation("Invalid placeholder. Consult the kernel documentation for more information.") },
{ KernelExceptionType.LanguageInstall, Translate.DoTranslation("The custom language failed to install. Check to make sure that the language file is correctly formed. Usually, the locale generator does a good job in making the localization information for your custom language.") },
{ KernelExceptionType.LanguageParse, Translate.DoTranslation("The custom language failed to load. Check to make sure that the language file is correctly formed. Usually, the locale generator does a good job in making the localization information for your custom language.") },
{ KernelExceptionType.LanguageUninstall, Translate.DoTranslation("The custom language failed to uninstall.") },
{ KernelExceptionType.Mail, Translate.DoTranslation("The mail system encountered an error.") },
{ KernelExceptionType.ModInstall, Translate.DoTranslation("The mod failed to install. Check to make sure that it's a valid mod file. If your mod is a valid .NET assembly, check to make sure that it actually implements the interface that is necessary to start the mod.") },
{ KernelExceptionType.ModWithoutMod, Translate.DoTranslation("The mod contains no mod instance. Consult with the mod vendor for a new copy.") },
{ KernelExceptionType.ModUninstall, Translate.DoTranslation("The mod uninstallation has failed.") },
{ KernelExceptionType.MOTD, Translate.DoTranslation("An error occurred trying to read or set the message of the day.") },
{ KernelExceptionType.NoSuchEvent, Translate.DoTranslation("There is no event by this name.") },
{ KernelExceptionType.NoSuchLanguage, Translate.DoTranslation("There is no language by this name.") },
{ KernelExceptionType.NoSuchMailDirectory, Translate.DoTranslation("There is no mail directory by this name.") },
{ KernelExceptionType.NoSuchMod, Translate.DoTranslation("There is no mod by this name.") },
{ KernelExceptionType.NoSuchReflectionProperty, Translate.DoTranslation("There is no reflection property by this name.") },
{ KernelExceptionType.NoSuchReflectionVariable, Translate.DoTranslation("There is no reflection variable by this name.") },
{ KernelExceptionType.NoSuchScreensaver, Translate.DoTranslation("There is no screensaver by this name.") },
{ KernelExceptionType.NoSuchShellPreset, Translate.DoTranslation("There is no shell preset by this name.") },
{ KernelExceptionType.NoSuchTheme, Translate.DoTranslation("There is no theme by this name.") },
{ KernelExceptionType.NullUsers, Translate.DoTranslation("There are zero users in the entire kernel. We've reached an extremely rare situation. The kernel can't continue.") },
{ KernelExceptionType.PermissionManagement, Translate.DoTranslation("An error occurred trying to manage permissions") },
{ KernelExceptionType.RemoteDebugDeviceAlreadyExists, Translate.DoTranslation("The remote debug device already exists.") },
{ KernelExceptionType.RemoteDebugDeviceNotFound, Translate.DoTranslation("The remote debug device is not found. Check to make sure that you've written an IP address of the device right.") },
{ KernelExceptionType.RemoteDebugDeviceOperation, Translate.DoTranslation("The remote debug device operation failed.") },
{ KernelExceptionType.RSSNetwork, Translate.DoTranslation("The RSS network error occurred. Check to make sure that your internet connection is working.") },
{ KernelExceptionType.RSSShell, Translate.DoTranslation("The RSS shell error occurred.") },
{ KernelExceptionType.ScreensaverManagement, Translate.DoTranslation("The screensaver management error occurred during the operation.") },
{ KernelExceptionType.SFTPFilesystem, Translate.DoTranslation("A general SFTP filesystem error occurred. Check to make sure that the path specified is correct, and that the file or directory actually exists.") },
{ KernelExceptionType.SFTPNetwork, Translate.DoTranslation("A general SFTP network error occurred. Check to make sure that your internet connection is working.") },
{ KernelExceptionType.SFTPShell, Translate.DoTranslation("A general SFTP shell error occurred.") },
{ KernelExceptionType.UESHConditionParse, Translate.DoTranslation("Condition parsing failed. Please check your syntax to meet the operator's expected design.") },
{ KernelExceptionType.UESHScript, Translate.DoTranslation("An error occurred while trying to parse the UESH script file. Check your script file for errors and correct them.") },
{ KernelExceptionType.UserCreation, Translate.DoTranslation("A user creation error occurred.") },
{ KernelExceptionType.UserManagement, Translate.DoTranslation("A user management error occurred.") },
{ KernelExceptionType.Network, Translate.DoTranslation("A general network error occurred. Should you be trying to connect to a remote end, make sure that you're connected to the Internet or to your local network.") },
{ KernelExceptionType.UnsupportedConsole, Translate.DoTranslation("An unsupported console has been detected.") },
{ KernelExceptionType.AssertionFailure, Translate.DoTranslation("An assertion failure has been detected in the kernel! This is most likely a bug in the kernel module that should be fixed on our end.") },
{ KernelExceptionType.NetworkOffline, Translate.DoTranslation("Your network needs to be online before being able to perform operations related to networking. Connect your network adapter and try again.") },
{ KernelExceptionType.PermissionDenied, Translate.DoTranslation("Permission denied trying to perform an operation. You'll need to log in as a user that has the necessary permissions in order to be able to perform this operation.") },
{ KernelExceptionType.NoSuchUser, Translate.DoTranslation("User doesn't exist. Check to make sure that you've written the user correctly.") },
{ KernelExceptionType.NoSuchDriver, Translate.DoTranslation("Driver doesn't exist. Check to make sure that you've written the driver name correctly, and that the driver is registered properly.") },
{ KernelExceptionType.ThreadNotReadyYet, Translate.DoTranslation("The thread is not ready yet. The user code might have forgotten to regenerate the kernel thread after stopping it manually.") },
{ KernelExceptionType.ThreadOperation, Translate.DoTranslation("A thread operation is invalid in the current state. Refer to the additional message the kernel thread manager gave you for additional information.") },
{ KernelExceptionType.ShellOperation, Translate.DoTranslation("An invalid shell operation is being attempted.") },
{ KernelExceptionType.NotImplementedYet, Translate.DoTranslation("This function or feature is not implemented yet.") },
{ KernelExceptionType.RemoteProcedure, Translate.DoTranslation("An operation was attempted on the remote procedure system that is invalid.") },
{ KernelExceptionType.Encryption, Translate.DoTranslation("An invalid encryption operation is being performed.") },
{ KernelExceptionType.Debug, Translate.DoTranslation("An invalid debugging operation is being performed.") },
{ KernelExceptionType.Archive, Translate.DoTranslation("An invalid archive operation is being performed.") },
{ KernelExceptionType.HexEditor, Translate.DoTranslation("An invalid hex editor operation is being performed.") },
{ KernelExceptionType.JsonEditor, Translate.DoTranslation("An invalid JSON editor operation is being performed.") },
{ KernelExceptionType.TextEditor, Translate.DoTranslation("An invalid text editor operation is being performed.") },
{ KernelExceptionType.OldModDetected, Translate.DoTranslation("When the kernel tried to load the specified mod, it requested loading \"Kernel Simulator\". Since the main application is renamed to Nitrocid KS, this mod can't be run safely. We advice you to upgrade the mod.") },
{ KernelExceptionType.RegularExpression, Translate.DoTranslation("A regular expression error happened while the text is being processed. Check your regular expression syntax and try again. If the time-out occurred, ensure that you don't recurse too much (don't be greedy).") },
{ KernelExceptionType.Contacts, Translate.DoTranslation("A contacts manager error occurred when trying to perform the requested operation. Make sure that the contact file exists in the correct folder and that it's a valid vCard 2.1, 3.0, or 4.0 contact file.") },
{ KernelExceptionType.UESHConditional, Translate.DoTranslation("A UESH condition system failed while performing the requested operation. See the error message below for more details.") },
{ KernelExceptionType.SqlEditor, Translate.DoTranslation("An invalid SQL editor operation is being performed.") },
{ KernelExceptionType.NoSuchGroup, Translate.DoTranslation("Group doesn't exist. Check to make sure that you've written the group name correctly.") },
{ KernelExceptionType.InteractiveTui, Translate.DoTranslation("An error occurred in the Interactive TUI implementation.") },
{ KernelExceptionType.CustomSettings, Translate.DoTranslation("An error occurred in the custom settings manager for users.") },
{ KernelExceptionType.NetworkConnection, Translate.DoTranslation("An error occurred in the network connection manager.") },
{ KernelExceptionType.HTTPNetwork, Translate.DoTranslation("A general HTTP network error occurred. Check to make sure that your internet connection is working.") },
{ KernelExceptionType.CommandManager, Translate.DoTranslation("A general command manager error occurred. Check to make sure that you've written the command or the shell type correctly.") },
{ KernelExceptionType.LocaleGen, Translate.DoTranslation("Locale generator tool returned an error while trying to generate JSON files for languages.") },
{ KernelExceptionType.TimeDate, Translate.DoTranslation("An error occurred in the time and date module. Check to make sure that you've specified the time and the date correctly, and that the time zone exists.") },
{ KernelExceptionType.ModManual, Translate.DoTranslation("An error occurred in the mod manual parser. Please ensure that your manual file is valid and that the mod is started.") },
{ KernelExceptionType.Calendar, Translate.DoTranslation("An error occurred in the calendar manager.") },
{ KernelExceptionType.NotificationManagement, Translate.DoTranslation("There was an error in the notification management.") },
{ KernelExceptionType.LanguageManagement, Translate.DoTranslation("There was an error in the language management.") },
{ KernelExceptionType.ModManagement, Translate.DoTranslation("There was an error in the mod management.") },
{ KernelExceptionType.Reflection, Translate.DoTranslation("There was an error in the reflection system.") },
{ KernelExceptionType.ThemeManagement, Translate.DoTranslation("There was an error when trying to perform an operation for theme management.") },
{ KernelExceptionType.EventManagement, Translate.DoTranslation("There was an error when trying to perform an operation for the kernel event management.") },
{ KernelExceptionType.AddonManagement, Translate.DoTranslation("There was an error when trying to perform an operation for the kernel addon management.") },
{ KernelExceptionType.NoteManagement, Translate.DoTranslation("There was an error when trying to perform an operation for the note management.") },
{ KernelExceptionType.Hardware, Translate.DoTranslation("Hardware component management failed.") },
{ KernelExceptionType.LoginHandler, Translate.DoTranslation("Login handler failed. Please ensure that it's registered properly and that it does its job as expected.") },
{ KernelExceptionType.Encoding, Translate.DoTranslation("Encoding has failed. Check to make sure that your encoding driver works correctly and fix any problems if found, then try again.") },
{ KernelExceptionType.PrivacyConsent, Translate.DoTranslation("Invalid privacy consent operation. Please make sure that the consent is correct and try again.") },
{ KernelExceptionType.Splash, Translate.DoTranslation("Splash manager has failed to perform your requested operation. Please check the splash name and try again.") },
{ KernelExceptionType.Text, Translate.DoTranslation("Text tools failed to process your request.") },
{ KernelExceptionType.InvalidPlaceholderAction, Translate.DoTranslation("Invalid placeholder action. Consult the kernel documentation for more information.") },
{ KernelExceptionType.DriverHandler, Translate.DoTranslation("The driver handler failed to perform this action because you might have supplied the parameters wrong. If you're sure that they're specified correctly, make sure that you've provided the right driver name and type.") },
{ KernelExceptionType.ProgressHandler, Translate.DoTranslation("The progress handler has failed to perform the requested operation.") },
{ KernelExceptionType.Console, Translate.DoTranslation("The console operation failed to perform the required task.") },
{ KernelExceptionType.Journaling, Translate.DoTranslation("The kernel journaling operation failed to perform the required task.") },
{ KernelExceptionType.Docking, Translate.DoTranslation("The system docking operation failed to perform the required task.") },
{ KernelExceptionType.Security, Translate.DoTranslation("The security operation failed to perform the required task.") },
{ KernelExceptionType.DriverManagement, Translate.DoTranslation("There was an error when trying to perform an operation for the kernel driver management.") },
{ KernelExceptionType.Environment, Translate.DoTranslation("There was an error when trying to perform an operation for the environment management.") },
{ KernelExceptionType.Bootloader, Translate.DoTranslation("There was an error when trying to process a bootloader operation.") },
{ KernelExceptionType.Alarm, Translate.DoTranslation("There was an error when trying to process an alarm system operation.") },
{ KernelExceptionType.Widget, Translate.DoTranslation("There was an error when trying to process a widget system operation. If you're sure that this widget is registered properly, please make sure that you've written the widget class name properly.") },
{ KernelExceptionType.Homepage, Translate.DoTranslation("The homepage tools has encountered an error when trying to process your request. Please make sure that you've entered all the necessary data correctly.") },
};
internal static string GetFinalExceptionMessage(KernelExceptionType exceptionType, string message, Exception? e, params object[] vars)
{
StringBuilder builder = new();
// Display introduction
DebugWriter.WriteDebug(DebugLevel.I, "Not a nested KernelException.");
builder.AppendLine(Translate.DoTranslation("There is an error in the kernel, one of the kernel addons, one of your mods, or one of the kernel components. If the routine tried to process your input, ensure that you've written all the parameters correctly."));
builder.AppendLine();
// Display error type
builder.AppendLine("--- " + Translate.DoTranslation("Exception info") + " ---");
builder.AppendLine("- " + Translate.DoTranslation("Error type") + $": {exceptionType} [{Convert.ToInt32(exceptionType)}]");
builder.AppendLine(" " + Translate.DoTranslation("Error message") + $": {GetMessageFromType(exceptionType)}");
builder.AppendLine();
// Display error message
builder.AppendLine("--- " + Translate.DoTranslation("Additional info") + " ---");
DebugWriter.WriteDebug(DebugLevel.I, "Error message \"{0}\"", message);
if (!string.IsNullOrWhiteSpace(message))
{
builder.AppendLine("- " + Translate.DoTranslation("The module that caused the fault provided this additional information that may help you further"));
builder.AppendLine(" " + TextTools.FormatString(message, vars));
}
else
builder.AppendLine("- " + Translate.DoTranslation("The module that caused the fault didn't provide additional information."));
builder.AppendLine();
// Display exception
builder.AppendLine("--- " + Translate.DoTranslation("Exception details") + " ---");
DebugWriter.WriteDebug(DebugLevel.I, "Exception is not null: {0}", e is not null);
if (e is not null)
{
builder.AppendLine("- " + Translate.DoTranslation("If the additional info above doesn't help you pinpoint the problem, this may help you pinpoint it."));
builder.AppendLine(" " + $"{e.GetType().Name}: {(e is KernelException kex ? kex.OriginalExceptionMessage : e.Message)}");
}
else
builder.AppendLine("- " + Translate.DoTranslation("The module didn't provide the exception information, so it's usually an indicator that something is wrong."));
builder.AppendLine();
// Display inner exceptions
builder.AppendLine("--- " + Translate.DoTranslation("Inner exception details") + " ---");
int exceptionIndex = 1;
if (e is not null)
e = e.InnerException;
if (e is not null)
builder.AppendLine("- " + Translate.DoTranslation("Additional errors were found when the routine tried to perform this operation"));
while (e is not null)
{
DebugWriter.WriteDebug(DebugLevel.I, "Inner exception {0} is not null: {1}", exceptionIndex, e is not null);
builder.AppendLine(" " + $"[{exceptionIndex}] {e?.GetType().Name}: {(e is KernelException kex ? kex.OriginalExceptionMessage : e?.Message)}");
e = e?.InnerException;
exceptionIndex++;
}
if (e is null)
builder.AppendLine("- " + Translate.DoTranslation("Additional errors were not found during the operation."));
builder.AppendLine();
builder.Append(Translate.DoTranslation("If you're sure that this error is unexpected, try to restart the kernel with debugging enabled and investigate the logs after retrying the action."));
return builder.ToString();
}
internal static string GetMessageFromType(KernelExceptionType exceptionType) =>
Messages.TryGetValue(exceptionType, out string? type) ?
type :
Translate.DoTranslation("Unfortunately, an invalid message type was given, so it's possible that something is messed up. Try turning on the debugger and reproducing the problem.");
}
}