Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
f36c7077
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f36c7077
编写于
7月 12, 2007
作者:
D
Daniel P. Berrange
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Check client cert/key ahead of time & report errors
上级
e958eff7
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
30 addition
and
0 deletion
+30
-0
ChangeLog
ChangeLog
+6
-0
src/remote_internal.c
src/remote_internal.c
+24
-0
未找到文件。
ChangeLog
浏览文件 @
f36c7077
Thu Jul 12 11:15:17 EST 2007 Daniel P. Berrange <berrange@redhat.com>
* src/remote_internal.c: Explicitly check certificate/key files
before trying to load them so we can get improved error reports
back.
Thu Jul 12 11:02:17 EST 2007 Daniel P. Berrange <berrange@redhat.com>
Thu Jul 12 11:02:17 EST 2007 Daniel P. Berrange <berrange@redhat.com>
* src/qemu_conf.c, src/qemu_conf.h, src/qemu_driver.c: Pass
* src/qemu_conf.c, src/qemu_conf.h, src/qemu_driver.c: Pass
...
...
src/remote_internal.c
浏览文件 @
f36c7077
...
@@ -890,6 +890,22 @@ query_free (struct query_fields *fields)
...
@@ -890,6 +890,22 @@ query_free (struct query_fields *fields)
/* GnuTLS functions used by remoteOpen. */
/* GnuTLS functions used by remoteOpen. */
static
gnutls_certificate_credentials_t
x509_cred
;
static
gnutls_certificate_credentials_t
x509_cred
;
static
int
check_cert_file
(
const
char
*
type
,
const
char
*
file
)
{
struct
stat
sb
;
if
(
stat
(
file
,
&
sb
)
<
0
)
{
__virRaiseError
(
NULL
,
NULL
,
NULL
,
VIR_FROM_REMOTE
,
VIR_ERR_RPC
,
VIR_ERR_ERROR
,
LIBVIRT_CACERT
,
NULL
,
NULL
,
0
,
0
,
"Cannot access %s '%s': %s (%d)"
,
type
,
file
,
strerror
(
errno
),
errno
);
return
-
1
;
}
return
0
;
}
static
int
static
int
initialise_gnutls
(
virConnectPtr
conn
ATTRIBUTE_UNUSED
)
initialise_gnutls
(
virConnectPtr
conn
ATTRIBUTE_UNUSED
)
{
{
...
@@ -907,6 +923,14 @@ initialise_gnutls (virConnectPtr conn ATTRIBUTE_UNUSED)
...
@@ -907,6 +923,14 @@ initialise_gnutls (virConnectPtr conn ATTRIBUTE_UNUSED)
return
-
1
;
return
-
1
;
}
}
if
(
check_cert_file
(
"CA certificate"
,
LIBVIRT_CACERT
)
<
0
)
return
-
1
;
if
(
check_cert_file
(
"client key"
,
LIBVIRT_CLIENTKEY
)
<
0
)
return
-
1
;
if
(
check_cert_file
(
"client certificate"
,
LIBVIRT_CLIENTCERT
)
<
0
)
return
-
1
;
/* Set the trusted CA cert. */
/* Set the trusted CA cert. */
#if DEBUG
#if DEBUG
fprintf
(
stderr
,
"loading CA file %s
\n
"
,
LIBVIRT_CACERT
);
fprintf
(
stderr
,
"loading CA file %s
\n
"
,
LIBVIRT_CACERT
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录