Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
ea0cc4f4
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看板
提交
ea0cc4f4
编写于
10月 19, 2017
作者:
J
John Ferlan
提交者:
Peter Krempa
11月 07, 2017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
qemu: block: Add JSON props generator for iSCSI protocol
上级
97ee821a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
76 addition
and
1 deletion
+76
-1
src/qemu/qemu_block.c
src/qemu/qemu_block.c
+76
-1
未找到文件。
src/qemu/qemu_block.c
浏览文件 @
ea0cc4f4
...
...
@@ -704,6 +704,77 @@ qemuBlockStorageSourceGetCURLProps(virStorageSourcePtr src)
}
static
virJSONValuePtr
qemuBlockStorageSourceGetISCSIProps
(
virStorageSourcePtr
src
)
{
qemuDomainStorageSourcePrivatePtr
srcPriv
=
QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE
(
src
);
const
char
*
protocol
=
virStorageNetProtocolTypeToString
(
src
->
protocol
);
char
*
target
=
NULL
;
char
*
lunStr
=
NULL
;
char
*
username
=
NULL
;
char
*
objalias
=
NULL
;
char
*
portal
=
NULL
;
unsigned
int
lun
=
0
;
virJSONValuePtr
ret
=
NULL
;
/* { driver:"iscsi",
* transport:"tcp", ("iser" also possible)
* portal:"example.com",
* target:"iqn.2017-04.com.example:iscsi-disks",
* lun:1,
* user:"username",
* password-secret:"secret-alias",
* }
*/
if
(
VIR_STRDUP
(
target
,
src
->
path
)
<
0
)
goto
cleanup
;
/* Separate the target and lun */
if
((
lunStr
=
strchr
(
target
,
'/'
)))
{
*
(
lunStr
++
)
=
'\0'
;
if
(
virStrToLong_ui
(
lunStr
,
NULL
,
10
,
&
lun
)
<
0
)
{
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
_
(
"cannot parse target for lunStr '%s'"
),
target
);
goto
cleanup
;
}
}
/* combine host and port into portal */
if
(
virSocketAddrNumericFamily
(
src
->
hosts
[
0
].
name
)
==
AF_INET6
)
{
if
(
virAsprintf
(
&
portal
,
"[%s]:%u"
,
src
->
hosts
[
0
].
name
,
src
->
hosts
[
0
].
port
)
<
0
)
goto
cleanup
;
}
else
{
if
(
virAsprintf
(
&
portal
,
"%s:%u"
,
src
->
hosts
[
0
].
name
,
src
->
hosts
[
0
].
port
)
<
0
)
goto
cleanup
;
}
if
(
src
->
auth
)
{
username
=
src
->
auth
->
username
;
objalias
=
srcPriv
->
secinfo
->
s
.
aes
.
alias
;
}
ignore_value
(
virJSONValueObjectCreate
(
&
ret
,
"s:driver"
,
protocol
,
"s:portal"
,
portal
,
"s:target"
,
target
,
"u:lun"
,
lun
,
"s:transport"
,
"tcp"
,
"S:user"
,
username
,
"S:password-secret"
,
objalias
,
NULL
));
goto
cleanup
;
cleanup:
VIR_FREE
(
target
);
VIR_FREE
(
portal
);
return
ret
;
}
/**
* qemuBlockStorageSourceGetBackendProps:
* @src: disk source
...
...
@@ -753,10 +824,14 @@ qemuBlockStorageSourceGetBackendProps(virStorageSourcePtr src)
return
NULL
;
break
;
case
VIR_STORAGE_NET_PROTOCOL_ISCSI
:
if
(
!
(
fileprops
=
qemuBlockStorageSourceGetISCSIProps
(
src
)))
return
NULL
;
break
;
case
VIR_STORAGE_NET_PROTOCOL_NBD
:
case
VIR_STORAGE_NET_PROTOCOL_RBD
:
case
VIR_STORAGE_NET_PROTOCOL_SHEEPDOG
:
case
VIR_STORAGE_NET_PROTOCOL_ISCSI
:
case
VIR_STORAGE_NET_PROTOCOL_SSH
:
case
VIR_STORAGE_NET_PROTOCOL_NONE
:
case
VIR_STORAGE_NET_PROTOCOL_LAST
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录