2001-11-24 18:43:43 +01:00
|
|
|
/* errors.h - Globally used error codes
|
|
|
|
* Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GNUPG_COMMON_ERRORS_H
|
|
|
|
#define GNUPG_COMMON_ERRORS_H
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
/* Error numbers */
|
|
|
|
enum {
|
|
|
|
GNUPG_EOF = -1,
|
|
|
|
GNUPG_No_Error = 0,
|
|
|
|
GNUPG_General_Error = 1,
|
|
|
|
GNUPG_Out_Of_Core = 2,
|
|
|
|
GNUPG_Invalid_Value = 3,
|
|
|
|
GNUPG_IO_Error = 4,
|
|
|
|
GNUPG_Resource_Limit = 5,
|
|
|
|
GNUPG_Internal_Error = 6,
|
|
|
|
GNUPG_Bad_Certificate = 7,
|
2002-08-16 16:24:12 +02:00
|
|
|
GNUPG_Bad_Certificate_Chain = 8,
|
2001-11-24 18:43:43 +01:00
|
|
|
GNUPG_Missing_Certificate = 9,
|
|
|
|
GNUPG_No_Data = 10,
|
|
|
|
GNUPG_Bad_Signature = 11,
|
|
|
|
GNUPG_Not_Implemented = 12,
|
|
|
|
GNUPG_Conflict = 13,
|
2001-11-25 19:23:06 +01:00
|
|
|
GNUPG_Bug = 14,
|
|
|
|
GNUPG_Read_Error = 15,
|
|
|
|
GNUPG_Write_Error = 16,
|
|
|
|
GNUPG_Incomplete_Line = 17,
|
|
|
|
GNUPG_Invalid_Response = 18,
|
|
|
|
GNUPG_No_Agent = 19,
|
|
|
|
GNUPG_Agent_Error = 20,
|
|
|
|
GNUPG_No_Public_Key = 21,
|
|
|
|
GNUPG_No_Secret_Key = 22,
|
2001-11-26 14:08:00 +01:00
|
|
|
GNUPG_File_Open_Error = 23,
|
|
|
|
GNUPG_File_Create_Error = 24,
|
|
|
|
GNUPG_File_Error = 25,
|
|
|
|
GNUPG_Not_Supported = 26,
|
2001-12-06 00:45:42 +01:00
|
|
|
GNUPG_Invalid_Data = 27,
|
|
|
|
GNUPG_Assuan_Server_Fault = 28,
|
|
|
|
GNUPG_Assuan_Error = 29, /* catch all assuan error */
|
2001-12-06 21:47:30 +01:00
|
|
|
GNUPG_Invalid_Session_Key = 30,
|
|
|
|
GNUPG_Invalid_Sexp = 31,
|
|
|
|
GNUPG_Unsupported_Algorithm = 32,
|
2001-12-10 10:27:30 +01:00
|
|
|
GNUPG_No_PIN_Entry = 33,
|
|
|
|
GNUPG_PIN_Entry_Error = 34,
|
|
|
|
GNUPG_Bad_PIN = 35,
|
|
|
|
GNUPG_Bad_Passphrase = 36,
|
2001-12-11 13:27:10 +01:00
|
|
|
GNUPG_Invalid_Name = 37,
|
2001-12-20 17:49:48 +01:00
|
|
|
GNUPG_Bad_Public_Key = 38,
|
|
|
|
GNUPG_Bad_Secret_Key = 39,
|
|
|
|
GNUPG_Bad_Data = 40,
|
2002-01-10 20:46:20 +01:00
|
|
|
GNUPG_Invalid_Parameter = 41,
|
2002-01-11 18:07:15 +01:00
|
|
|
GNUPG_Tribute_to_D_A = 42,
|
|
|
|
GNUPG_No_Dirmngr = 43,
|
|
|
|
GNUPG_Dirmngr_Error = 44,
|
|
|
|
GNUPG_Certificate_Revoked = 45,
|
|
|
|
GNUPG_No_CRL_Known = 46,
|
|
|
|
GNUPG_CRL_Too_Old = 47,
|
2002-01-15 14:02:13 +01:00
|
|
|
GNUPG_Line_Too_Long = 48,
|
|
|
|
GNUPG_Not_Trusted = 49,
|
2002-01-19 19:20:45 +01:00
|
|
|
GNUPG_Canceled = 50,
|
2002-01-22 14:32:48 +01:00
|
|
|
GNUPG_Bad_CA_Certificate = 51,
|
|
|
|
GNUPG_Certificate_Expired = 52,
|
|
|
|
GNUPG_Certificate_Too_Young = 53,
|
|
|
|
GNUPG_Unsupported_Certificate = 54,
|
2002-01-31 18:46:29 +01:00
|
|
|
GNUPG_Unknown_Sexp = 55,
|
|
|
|
GNUPG_Unsupported_Protection = 56,
|
|
|
|
GNUPG_Corrupted_Protection = 57,
|
2002-02-12 21:42:25 +01:00
|
|
|
GNUPG_Ambiguous_Name = 58,
|
|
|
|
GNUPG_Card_Error = 59,
|
|
|
|
GNUPG_Card_Reset = 60,
|
|
|
|
GNUPG_Card_Removed = 61,
|
|
|
|
GNUPG_Invalid_Card = 62,
|
|
|
|
GNUPG_Card_Not_Present = 63,
|
|
|
|
GNUPG_No_PKCS15_App = 64,
|
2002-02-18 21:46:09 +01:00
|
|
|
GNUPG_Not_Confirmed = 65,
|
2002-02-19 18:39:05 +01:00
|
|
|
GNUPG_Configuration_Error = 66,
|
|
|
|
GNUPG_No_Policy_Match = 67,
|
2002-02-28 12:07:59 +01:00
|
|
|
GNUPG_Invalid_Index = 68,
|
|
|
|
GNUPG_Invalid_Id = 69,
|
|
|
|
GNUPG_No_Scdaemon = 70,
|
|
|
|
GNUPG_Scdaemon_Error = 71,
|
|
|
|
GNUPG_Unsupported_Protocol = 72,
|
2002-03-05 18:17:41 +01:00
|
|
|
GNUPG_Bad_PIN_Method = 73,
|
2002-03-12 14:36:55 +01:00
|
|
|
GNUPG_Card_Not_Initialized = 74,
|
|
|
|
GNUPG_Unsupported_Operation = 75,
|
2002-04-12 20:54:34 +02:00
|
|
|
GNUPG_Wrong_Key_Usage = 76,
|
2001-11-24 18:43:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Status codes - fixme: should go into another file */
|
|
|
|
enum {
|
|
|
|
STATUS_ENTER,
|
|
|
|
STATUS_LEAVE,
|
|
|
|
STATUS_ABORT,
|
|
|
|
STATUS_GOODSIG,
|
|
|
|
STATUS_BADSIG,
|
|
|
|
STATUS_ERRSIG,
|
|
|
|
STATUS_BADARMOR,
|
|
|
|
STATUS_RSA_OR_IDEA,
|
|
|
|
STATUS_SIGEXPIRED,
|
|
|
|
STATUS_KEYREVOKED,
|
|
|
|
STATUS_TRUST_UNDEFINED,
|
|
|
|
STATUS_TRUST_NEVER,
|
|
|
|
STATUS_TRUST_MARGINAL,
|
|
|
|
STATUS_TRUST_FULLY,
|
|
|
|
STATUS_TRUST_ULTIMATE,
|
|
|
|
|
|
|
|
STATUS_SHM_INFO,
|
|
|
|
STATUS_SHM_GET,
|
|
|
|
STATUS_SHM_GET_BOOL,
|
|
|
|
STATUS_SHM_GET_HIDDEN,
|
|
|
|
|
|
|
|
STATUS_NEED_PASSPHRASE,
|
|
|
|
STATUS_VALIDSIG,
|
|
|
|
STATUS_SIG_ID,
|
|
|
|
STATUS_ENC_TO,
|
|
|
|
STATUS_NODATA,
|
|
|
|
STATUS_BAD_PASSPHRASE,
|
|
|
|
STATUS_NO_PUBKEY,
|
|
|
|
STATUS_NO_SECKEY,
|
|
|
|
STATUS_NEED_PASSPHRASE_SYM,
|
|
|
|
STATUS_DECRYPTION_FAILED,
|
|
|
|
STATUS_DECRYPTION_OKAY,
|
|
|
|
STATUS_MISSING_PASSPHRASE,
|
|
|
|
STATUS_GOOD_PASSPHRASE,
|
|
|
|
STATUS_GOODMDC,
|
|
|
|
STATUS_BADMDC,
|
|
|
|
STATUS_ERRMDC,
|
|
|
|
STATUS_IMPORTED,
|
2002-08-21 17:41:11 +02:00
|
|
|
STATUS_IMPORT_PROBLEM,
|
2001-11-24 18:43:43 +01:00
|
|
|
STATUS_IMPORT_RES,
|
|
|
|
STATUS_FILE_START,
|
|
|
|
STATUS_FILE_DONE,
|
|
|
|
STATUS_FILE_ERROR,
|
|
|
|
|
|
|
|
STATUS_BEGIN_DECRYPTION,
|
|
|
|
STATUS_END_DECRYPTION,
|
|
|
|
STATUS_BEGIN_ENCRYPTION,
|
|
|
|
STATUS_END_ENCRYPTION,
|
|
|
|
|
|
|
|
STATUS_DELETE_PROBLEM,
|
|
|
|
STATUS_GET_BOOL,
|
|
|
|
STATUS_GET_LINE,
|
|
|
|
STATUS_GET_HIDDEN,
|
|
|
|
STATUS_GOT_IT,
|
|
|
|
STATUS_PROGRESS,
|
|
|
|
STATUS_SIG_CREATED,
|
|
|
|
STATUS_SESSION_KEY,
|
|
|
|
STATUS_NOTATION_NAME,
|
|
|
|
STATUS_NOTATION_DATA,
|
|
|
|
STATUS_POLICY_URL,
|
|
|
|
STATUS_BEGIN_STREAM,
|
|
|
|
STATUS_END_STREAM,
|
|
|
|
STATUS_KEY_CREATED,
|
|
|
|
STATUS_USERID_HIN,
|
|
|
|
STATUS_UNEXPECTED,
|
|
|
|
STATUS_INV_RECP,
|
|
|
|
STATUS_NO_RECP,
|
|
|
|
STATUS_ALREADY_SIGNED,
|
2002-05-03 22:19:35 +02:00
|
|
|
|
|
|
|
STATUS_EXPSIG,
|
2002-05-21 21:20:40 +02:00
|
|
|
STATUS_EXPKEYSIG,
|
|
|
|
|
2002-06-12 11:56:05 +02:00
|
|
|
STATUS_TRUNCATED,
|
|
|
|
STATUS_ERROR
|
2001-11-24 18:43:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-06-12 11:56:05 +02:00
|
|
|
/*-- errors.c (build by mkerror and mkerrtok) --*/
|
2001-11-24 18:43:43 +01:00
|
|
|
const char *gnupg_strerror (int err);
|
2002-06-12 11:56:05 +02:00
|
|
|
const char *gnupg_error_token (int err);
|
2001-11-24 18:43:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
#endif /*GNUPG_COMMON_ERRORS_H*/
|