Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snf-image-creator
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
itminedu
snf-image-creator
Commits
1377b8a7
Commit
1377b8a7
authored
13 years ago
by
Nikos Skalkotos
Browse files
Options
Downloads
Patches
Plain Diff
Use libguestfs to access the image
parent
333ff548
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
image_creator/disk.py
+55
-43
55 additions, 43 deletions
image_creator/disk.py
image_creator/main.py
+3
-1
3 additions, 1 deletion
image_creator/main.py
with
58 additions
and
44 deletions
image_creator/disk.py
+
55
−
43
View file @
1377b8a7
...
...
@@ -6,12 +6,14 @@ import os
import
tempfile
import
uuid
import
re
import
sys
import
guestfs
from
pbs
import
dmsetup
from
pbs
import
blockdev
from
pbs
import
dd
from
pbs
import
kpartx
from
pbs
import
mount
from
pbs
import
umount
class
DiskError
(
Exception
):
pass
class
Disk
(
object
):
...
...
@@ -33,6 +35,10 @@ class Disk(object):
raise
NotImplementedError
def
cleanup
(
self
):
while
len
(
self
.
_devices
):
device
=
self
.
_devices
.
pop
()
device
.
destroy
()
while
len
(
self
.
_cleanup_jobs
):
job
,
args
=
self
.
_cleanup_jobs
.
pop
()
job
(
*
args
)
...
...
@@ -65,51 +71,57 @@ class Disk(object):
finally
:
os
.
unlink
(
table
)
new_device
=
DiskDevice
(
self
,
"
/dev/mapper/%s
"
%
snapshot
)
new_device
=
DiskDevice
(
"
/dev/mapper/%s
"
%
snapshot
)
self
.
_devices
.
append
(
new_device
)
return
new_device
def
destroy_device
(
self
,
device
):
self
.
_devices
.
remove
(
device
)
device
.
destroy
()
class
DiskDevice
(
object
):
def
__init__
(
self
,
disk
,
device
,
bootable
=
True
):
self
.
disk
=
disk
def
__init__
(
self
,
device
,
bootable
=
True
):
self
.
device
=
device
self
.
is_bootable
=
bootable
self
.
partitions_mapped
=
False
self
.
magic_number
=
uuid
.
uuid4
().
hex
def
list_partitions
(
self
):
if
not
self
.
partitions_mapped
:
kpartx
(
"
-a
"
,
"
-p
"
,
self
.
magic_number
,
self
.
dev
)
self
.
disk
.
_cleanup_jobs
.
append
(
kpartx
,
"
-d
"
,
"
-p
"
,
self
.
magic_number
,
self
.
dev
)
self
.
partitions_mapped
=
True
output
=
kpartx
(
"
-l
"
,
"
-p
"
,
self
.
magic_number
,
self
.
dev
)
return
[
"
/dev/mapper/%s
"
%
x
for
x
in
re
.
findall
(
'
^\S+
'
,
str
(
output
),
flags
=
re
.
MULTILINE
)]
def
mount
(
self
,
partition
):
if
not
self
.
partitions_mapped
:
self
.
list_partitions
()
kpartx
(
"
-a
"
,
"
-p
"
,
self
.
magic_number
,
self
.
dev
)
self
.
disk
.
_cleanup_jobs
.
append
(
kpartx
,
"
-d
"
,
"
-p
"
,
self
.
magic_number
,
self
.
dev
)
self
.
partitions_mapped
=
True
targetfd
,
target
=
tempfile
.
mkdtemp
()
try
:
mount
(
dev
,
partition
)
except
:
os
.
rmdir
(
table
)
raise
return
target
def
unmount
(
self
,
partition
):
umount
(
target
)
mode
=
os
.
stat
(
self
.
source
).
st_mode
if
stat
.
S_ISDIR
(
mode
):
os
.
rmdir
(
target
)
self
.
bootable
=
bootable
self
.
g
=
guestfs
.
GuestFS
()
self
.
g
.
add_drive_opts
(
device
,
readonly
=
0
)
self
.
g
.
launch
()
roots
=
self
.
g
.
inspect_os
()
if
len
(
roots
)
==
0
:
raise
DiskError
(
"
No operating system found
"
)
if
len
(
roots
)
>
1
:
raise
DiskError
(
"
Multiple operating systems found
"
)
self
.
root
=
roots
[
0
]
def
destroy
(
self
):
self
.
g
.
umount_all
()
self
.
g
.
sync
()
# Close the guestfs handler
del
self
.
g
def
get_image_metadata
(
self
):
meta
=
{}
meta
[
"
OSFAMILY
"
]
=
self
.
g
.
inspect_get_type
(
self
.
root
)
meta
[
"
OS
"
]
=
self
.
g
.
inspect_get_distro
(
self
.
root
)
meta
[
"
description
"
]
=
self
.
g
.
inspect_get_product_name
(
self
.
root
)
return
meta
def
mount
(
self
):
mps
=
g
.
inspect_get_mountpoints
(
self
.
root
)
# Sort the keys to mount the fs in a correct order.
# / should be mounted befor /boot, etc
def
compare
(
a
,
b
):
if
len
(
a
[
0
])
>
len
(
b
[
0
]):
return
1
elif
len
(
a
[
0
])
==
len
(
b
[
0
]):
return
0
else
:
return
-
1
mps
.
sort
(
compare
)
for
mp
,
dev
in
mps
:
try
:
self
.
g
.
mount
(
dev
,
mp
)
except
RuntimeError
as
msg
:
print
"
%s (ignored)
"
%
msg
# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
This diff is collapsed.
Click to expand it.
image_creator/main.py
+
3
−
1
View file @
1377b8a7
...
...
@@ -45,7 +45,9 @@ def main():
disk
=
Disk
(
source
)
try
:
dev
=
disk
.
get_device
()
metadata
=
dev
.
get_image_metadata
()
for
key
,
val
in
metadata
.
iteritems
():
print
"
%s=%s
"
%
(
key
,
val
)
finally
:
disk
.
cleanup
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment