Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
808ebd4e
Commit
808ebd4e
authored
Aug 13, 2003
by
Fruhwirth Clemens
Committed by
Linus Torvalds
Aug 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Fix cryptoloop ECB mode
cryptoloop won't oops anymore if ECB mode is requested.
parent
0dd316cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
3 deletions
+74
-3
drivers/block/cryptoloop.c
drivers/block/cryptoloop.c
+74
-3
No files found.
drivers/block/cryptoloop.c
View file @
808ebd4e
...
@@ -79,20 +79,70 @@ cryptoloop_init(struct loop_device *lo, const struct loop_info64 *info)
...
@@ -79,20 +79,70 @@ cryptoloop_init(struct loop_device *lo, const struct loop_info64 *info)
return
err
;
return
err
;
}
}
typedef
int
(
*
encdec_t
)(
struct
crypto_tfm
*
tfm
,
typedef
int
(
*
encdec_ecb_t
)(
struct
crypto_tfm
*
tfm
,
struct
scatterlist
*
sg_out
,
struct
scatterlist
*
sg_in
,
unsigned
int
nsg
);
static
int
cryptoloop_transfer_ecb
(
struct
loop_device
*
lo
,
int
cmd
,
char
*
raw_buf
,
char
*
loop_buf
,
int
size
,
sector_t
IV
)
{
struct
crypto_tfm
*
tfm
=
(
struct
crypto_tfm
*
)
lo
->
key_data
;
struct
scatterlist
sg_out
=
{
0
,
};
struct
scatterlist
sg_in
=
{
0
,
};
encdec_ecb_t
encdecfunc
;
char
const
*
in
;
char
*
out
;
if
(
cmd
==
READ
)
{
in
=
raw_buf
;
out
=
loop_buf
;
encdecfunc
=
tfm
->
crt_u
.
cipher
.
cit_decrypt
;
}
else
{
in
=
loop_buf
;
out
=
raw_buf
;
encdecfunc
=
tfm
->
crt_u
.
cipher
.
cit_encrypt
;
}
while
(
size
>
0
)
{
const
int
sz
=
min
(
size
,
LOOP_IV_SECTOR_SIZE
);
sg_in
.
page
=
virt_to_page
(
in
);
sg_in
.
offset
=
(
unsigned
long
)
in
&
~
PAGE_MASK
;
sg_in
.
length
=
sz
;
sg_out
.
page
=
virt_to_page
(
out
);
sg_out
.
offset
=
(
unsigned
long
)
out
&
~
PAGE_MASK
;
sg_out
.
length
=
sz
;
encdecfunc
(
tfm
,
&
sg_out
,
&
sg_in
,
sz
);
size
-=
sz
;
in
+=
sz
;
out
+=
sz
;
}
return
0
;
}
typedef
int
(
*
encdec_cbc_t
)(
struct
crypto_tfm
*
tfm
,
struct
scatterlist
*
sg_out
,
struct
scatterlist
*
sg_out
,
struct
scatterlist
*
sg_in
,
struct
scatterlist
*
sg_in
,
unsigned
int
nsg
,
u8
*
iv
);
unsigned
int
nsg
,
u8
*
iv
);
static
int
static
int
cryptoloop_transfer
(
struct
loop_device
*
lo
,
int
cmd
,
char
*
raw_buf
,
cryptoloop_transfer
_cbc
(
struct
loop_device
*
lo
,
int
cmd
,
char
*
raw_buf
,
char
*
loop_buf
,
int
size
,
sector_t
IV
)
char
*
loop_buf
,
int
size
,
sector_t
IV
)
{
{
struct
crypto_tfm
*
tfm
=
(
struct
crypto_tfm
*
)
lo
->
key_data
;
struct
crypto_tfm
*
tfm
=
(
struct
crypto_tfm
*
)
lo
->
key_data
;
struct
scatterlist
sg_out
=
{
0
,
};
struct
scatterlist
sg_out
=
{
0
,
};
struct
scatterlist
sg_in
=
{
0
,
};
struct
scatterlist
sg_in
=
{
0
,
};
encdec_t
encdecfunc
;
encdec_
cbc_
t
encdecfunc
;
char
const
*
in
;
char
const
*
in
;
char
*
out
;
char
*
out
;
...
@@ -130,6 +180,27 @@ cryptoloop_transfer(struct loop_device *lo, int cmd, char *raw_buf,
...
@@ -130,6 +180,27 @@ cryptoloop_transfer(struct loop_device *lo, int cmd, char *raw_buf,
return
0
;
return
0
;
}
}
static
int
cryptoloop_transfer
(
struct
loop_device
*
lo
,
int
cmd
,
char
*
raw_buf
,
char
*
loop_buf
,
int
size
,
sector_t
IV
)
{
struct
crypto_tfm
*
tfm
=
(
struct
crypto_tfm
*
)
lo
->
key_data
;
if
(
tfm
->
crt_cipher
.
cit_mode
==
CRYPTO_TFM_MODE_ECB
)
{
lo
->
transfer
=
cryptoloop_transfer_ecb
;
return
cryptoloop_transfer_ecb
(
lo
,
cmd
,
raw_buf
,
loop_buf
,
size
,
IV
);
}
if
(
tfm
->
crt_cipher
.
cit_mode
==
CRYPTO_TFM_MODE_CBC
)
{
lo
->
transfer
=
cryptoloop_transfer_cbc
;
return
cryptoloop_transfer_cbc
(
lo
,
cmd
,
raw_buf
,
loop_buf
,
size
,
IV
);
}
/* This is not supposed to happen */
printk
(
KERN_ERR
"cryptoloop: unsupported cipher mode in cryptoloop_transfer!
\n
"
);
return
-
EINVAL
;
}
static
int
static
int
cryptoloop_ioctl
(
struct
loop_device
*
lo
,
int
cmd
,
unsigned
long
arg
)
cryptoloop_ioctl
(
struct
loop_device
*
lo
,
int
cmd
,
unsigned
long
arg
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment