Назад | Перейти на главную страницу

Как перевести номер ошибки в константу errno?

Предположим, у меня есть приложение, работающее в системе UNIX, которое выдает сбой со статусом системной ошибки «13». Теперь я могу легко найти это значение в errno.h, чтобы узнать, что это проблема с отказом в разрешении.

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

Есть ли более простая команда для получения этой информации? Я бы хотел запустить что-то вроде этого:

> lookuperror 13
EACCES (Permission denied)

Вместо файлов системных заголовков grepping. Существует ли такая команда / программа?

Обновить: Как указано в ответах ниже, strerror() системный вызов возвращает эту информацию. Существуют ли какие-либо операционные системы UNIX, которые поставляются с исполняемой утилитой, которая выполняет этот системный вызов, или мне нужно написать свою собственную программу для этого?

Я делаю

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

Вы можете просто поместить код Perl в файл и указать его в пути.
Конечно, это можно сделать и с помощью C

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

Попробуйте strerror (3).

На странице руководства:

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.

В качестве обходного пути вы можете создать в своей оболочке псевдоним или функцию:

например. .bashrc

function lookuperror
{
    grep -w "$@" /usr/include/errno.h
}

cpp -dM предварительно обрабатывает исходный или заголовочный файл и печатает каждый #define что он находит. Это надежнее, чем пробираться сквозь /usr/include/errno.h, поскольку он получит каждый файл, /usr/include/errno.h включает.

Комбинируя cpp -dM с предложениями других:

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

Вставьте в .bashrc или поместите его содержимое как отдельный сценарий оболочки.