Wie übersetzt man eine Fehlernummer in die Konstante „errno“?

Wie übersetzt man eine Fehlernummer in die Konstante „errno“?

Angenommen, ich habe eine Anwendung auf einer UNIX-Maschine laufen, die mit dem Systemfehlerstatus „13“ abstürzt. Nun kann ich diesen Wert ganz einfach in errno.h nachschlagen und feststellen, dass es sich um ein Problem mit verweigerter Berechtigung handelt.

> grep -w 13 /usr/include/errno.h
#define EACCES  13      /* Permission denied                    */

Gibt es einen einfacheren Befehl, um diese Informationen abzurufen? Ich würde gerne so etwas ausführen können:

> lookuperror 13
EACCES (Permission denied)

Anstatt nach Systemheaderdateien zu greppen. Gibt es einen solchen Befehl/ein solches Programm?

Aktualisieren: Wie in den Antworten unten erläutert, strerror()gibt der Systemaufruf diese Informationen zurück. Gibt es UNIX-Betriebssysteme, die mit einem ausführbaren Dienstprogramm ausgeliefert werden, das diesen Systemaufruf durchführt, oder muss ich dafür ein eigenes Programm schreiben?

Antwort1

Ich mache

perl -MPOSIX -e 'print strerror($ARGV[0])."\n";' 13

Sie können den Perl-Code einfach in eine Datei packen und ihn im Pfad haben.
Natürlich geht das auch mit C

Antwort2

~% perror 13
OS error code  13:  Permission denied
~% rpm -qf =perror
mysql-server-5.0.45-7.el5

Antwort3

Versuchen Sie strerror(3).

Aus der Manpage:

DESCRIPTION

 The strerror(), strerror_r() and perror() functions look up the error
 message string corresponding to an error number.

 The strerror() function accepts an error number argument errnum and
 returns a pointer to the corresponding message string.

 The strerror_r() function renders the same result into strerrbuf for a
 maximum of buflen characters and returns 0 upon success.

 The perror() function finds the error message corresponding to the cur-
 rent value of the global variable errno (intro(2)) and writes it, fol-
 lowed by a newline, to the standard error file descriptor.  If the argu-
 ment string is non-NULL and does not point to the null character, this
 string is prepended to the message string and separated from it by a
 colon and space (``: ''); otherwise, only the error message string is
 printed.

 If the error number is not recognized, these functions return an error
 message string containing ``Unknown error: '' followed by the error num-
 ber in decimal.  The strerror() and strerror_r() functions return EINVAL
 as a warning.  Error numbers recognized by this implementation fall in
 the range 0 < errnum < sys_nerr.

 If insufficient storage is provided in strerrbuf (as specified in buflen)
 to contain the error string, strerror_r() returns ERANGE and strerrbuf
 will contain an error message that has been truncated and NUL terminated
 to fit the length specified by buflen.

 The message strings can be accessed directly using the external array
 sys_errlist.  The external value sys_nerr contains a count of the mes-
 sages in sys_errlist.  The use of these variables is deprecated;
 strerror() or strerror_r() should be used instead.

Antwort4

cpp -dMverarbeitet eine Quell- oder Headerdatei vor und druckt alle #definegefundenen Dateien aus. Dies ist robuster als das Durchsuchen von /usr/include/errno.h, da alle enthaltenen Dateien abgerufen werden /usr/include/errno.h.

Kombination von cpp -dM mit den Vorschlägen anderer:

function lookuperror
{
    cpp -dM /usr/include/errno.h | grep -w "$@"
    perl -MPOSIX -e 'print "Description:".strerror($ARGV[0])."\n";' $@
}

In .bashrc einfügen oder den Inhalt als eigenständiges Shell-Skript platzieren.

verwandte Informationen