Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F18826566
misc.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
4 KB
Subscribers
None
misc.c
View Options
/* misc.c
* Copyright (C) 1999 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
*/
#include
<config.h>
#include
<stdio.h>
#include
<stdlib.h>
#include
<string.h>
#include
<stdarg.h>
#include
<assert.h>
#include
<unistd.h>
#include
"g10lib.h"
static
int
verbosity_level
=
0
;
/* fixme: add a function to set it */
static
void
(
*
fatal_error_handler
)(
void
*
,
int
,
const
char
*
)
=
NULL
;
static
void
*
fatal_error_handler_value
=
0
;
static
void
(
*
log_handler
)(
void
*
,
int
,
const
char
*
,
va_list
)
=
NULL
;
static
void
*
log_handler_value
=
0
;
static
const
char
*
(
*
user_gettext_handler
)(
const
char
*
)
=
NULL
;
void
gcry_set_gettext_handler
(
const
char
*
(
*
f
)(
const
char
*
)
)
{
user_gettext_handler
=
f
;
}
const
char
*
g10_gettext
(
const
char
*
key
)
{
if
(
user_gettext_handler
)
return
user_gettext_handler
(
key
);
/* FIXME: switch the domain to gnupg and restore later */
return
key
;
}
void
gcry_set_fatalerror_handler
(
void
(
*
fnc
)(
void
*
,
int
,
const
char
*
),
void
*
value
)
{
fatal_error_handler_value
=
value
;
fatal_error_handler
=
fnc
;
}
static
void
write2stderr
(
const
char
*
s
)
{
write
(
2
,
s
,
strlen
(
s
)
);
}
/****************
* This function is called for fatal errors. A caller might want to
* set his own handler becuase this function simply calls abort().
*/
void
g10_fatal_error
(
int
rc
,
const
char
*
text
)
{
if
(
!
text
)
/* get a default text */
text
=
gcry_strerror
(
rc
);
if
(
fatal_error_handler
)
fatal_error_handler
(
fatal_error_handler_value
,
rc
,
text
);
write2stderr
(
"
\n
Fatal error: "
);
write2stderr
(
text
);
write2stderr
(
"
\n
"
);
abort
();
}
void
gcry_set_log_handler
(
void
(
*
logf
)(
void
*
,
int
,
const
char
*
,
va_list
),
void
*
opaque
)
{
log_handler
=
logf
;
log_handler_value
=
opaque
;
}
void
g10_set_log_verbosity
(
int
level
)
{
verbosity_level
=
level
;
}
int
g10_log_verbosity
(
int
level
)
{
return
verbosity_level
>=
level
;
}
/****************
* This is our log function which prints all log messages to stderr or
* using the function defined with gcry_set_log_handler().
*/
static
void
g10_logv
(
int
level
,
const
char
*
fmt
,
va_list
arg_ptr
)
{
if
(
log_handler
)
log_handler
(
log_handler_value
,
level
,
fmt
,
arg_ptr
);
else
{
switch
(
level
)
{
case
GCRY_LOG_CONT
:
break
;
case
GCRY_LOG_INFO
:
break
;
case
GCRY_LOG_WARN
:
break
;
case
GCRY_LOG_ERROR
:
break
;
case
GCRY_LOG_FATAL
:
fputs
(
"Fatal: "
,
stderr
);
break
;
case
GCRY_LOG_BUG
:
fputs
(
"Ohhhh jeeee: "
,
stderr
);
break
;
case
GCRY_LOG_DEBUG
:
fputs
(
"DBG: "
,
stderr
);
break
;
default
:
fprintf
(
stderr
,
"[Unknown log level %d]: "
,
level
);
break
;
}
vfprintf
(
stderr
,
fmt
,
arg_ptr
)
;
}
if
(
level
==
GCRY_LOG_FATAL
)
exit
(
2
);
else
if
(
level
==
GCRY_LOG_BUG
)
abort
();
}
void
g10_log
(
int
level
,
const
char
*
fmt
,
...
)
{
va_list
arg_ptr
;
va_start
(
arg_ptr
,
fmt
)
;
g10_logv
(
level
,
fmt
,
arg_ptr
);
va_end
(
arg_ptr
);
}
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 )
void
g10_bug
(
const
char
*
file
,
int
line
,
const
char
*
func
)
{
g10_log
(
GCRY_LOG_BUG
,
(
"... this is a bug (%s:%d:%s)
\n
"
),
file
,
line
,
func
);
abort
();
/* never called, but it makes the compiler happy */
}
#else
void
g10_bug
(
const
char
*
file
,
int
line
)
{
g10_log
(
GCRY_LOG_BUG
,
_
(
"you found a bug ... (%s:%d)
\n
"
),
file
,
line
);
abort
();
/* never called, but it makes the compiler happy */
}
#endif
void
g10_log_info
(
const
char
*
fmt
,
...
)
{
va_list
arg_ptr
;
va_start
(
arg_ptr
,
fmt
)
;
g10_logv
(
GCRY_LOG_INFO
,
fmt
,
arg_ptr
);
va_end
(
arg_ptr
);
}
void
g10_log_error
(
const
char
*
fmt
,
...
)
{
va_list
arg_ptr
;
va_start
(
arg_ptr
,
fmt
)
;
g10_logv
(
GCRY_LOG_ERROR
,
fmt
,
arg_ptr
);
va_end
(
arg_ptr
);
}
void
g10_log_fatal
(
const
char
*
fmt
,
...
)
{
va_list
arg_ptr
;
va_start
(
arg_ptr
,
fmt
)
;
g10_logv
(
GCRY_LOG_FATAL
,
fmt
,
arg_ptr
);
va_end
(
arg_ptr
);
abort
();
/* never called, bugs it makes the compiler happy */
}
void
g10_log_bug
(
const
char
*
fmt
,
...
)
{
va_list
arg_ptr
;
va_start
(
arg_ptr
,
fmt
)
;
g10_logv
(
GCRY_LOG_BUG
,
fmt
,
arg_ptr
);
va_end
(
arg_ptr
);
abort
();
/* never called, bugs it makes the compiler happy */
}
void
g10_log_debug
(
const
char
*
fmt
,
...
)
{
va_list
arg_ptr
;
va_start
(
arg_ptr
,
fmt
)
;
g10_logv
(
GCRY_LOG_DEBUG
,
fmt
,
arg_ptr
);
va_end
(
arg_ptr
);
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Mon, Dec 23, 5:27 PM (2 h, 41 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
66/74/99e9d991c8962a077dd632a374b8
Attached To
rC libgcrypt
Event Timeline
Log In to Comment