Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove unsafe pointer calls #267

Merged
merged 2 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/cipher.jl
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ function set_key!(cipher::Cipher, key, op::Operation)
key_b = tobytes(key)
keysize = 8 * sizeof(key_b) # Convert key size from bytes to bits
@err_check ccall((:mbedtls_cipher_setkey, libmbedcrypto), Cint,
(Ptr{Cvoid}, Ptr{Cvoid}, Cint, Cint),
cipher.data, pointer(key_b), keysize, Int(op))
(Ptr{Cvoid}, Ptr{UInt8}, Cint, Cint),
cipher.data, key_b, keysize, Int(op))
key
end

Expand All @@ -212,8 +212,8 @@ end
function set_iv!(cipher::Cipher, iv)
iv_b = tobytes(iv)
@err_check ccall((:mbedtls_cipher_set_iv, libmbedcrypto), Cint,
(Ptr{Cvoid}, Ptr{Cvoid}, Csize_t),
cipher.data, pointer(iv_b), sizeof(iv_b))
(Ptr{Cvoid}, Ptr{UInt8}, Csize_t),
cipher.data, iv_b, sizeof(iv_b))
end

"""
Expand Down Expand Up @@ -263,7 +263,7 @@ function crypt!(cipher::Cipher, iv, buf_in, buf_out)
iv_b, iv_size = process_iv(iv, cipher)
buf_in_b = tobytes(buf_in)
@err_check ccall((:mbedtls_cipher_crypt, libmbedcrypto), Cint,
(Ptr{Cvoid}, Ptr{Cvoid}, Csize_t, Ptr{Cvoid}, Csize_t, Ptr{Cvoid}, Ptr{Csize_t}),
(Ptr{Cvoid}, Ptr{UInt8}, Csize_t, Ptr{UInt8}, Csize_t, Ptr{UInt8}, Ptr{Csize_t}),
cipher.data, iv_b, iv_size, buf_in_b, sizeof(buf_in_b),
buf_out, olen_ref)
Int(olen_ref[])
Expand Down
2 changes: 1 addition & 1 deletion src/entropy.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ end

function update_manual(ctx::Entropy, data::Vector{UInt8})
@err_check ccall((:mbedtls_entropy_update_manual, libmbedcrypto), Cint,
(Ptr{Cvoid}, Ptr{Cvoid}, Csize_t), ctx.data, pointer(data), length(data))
(Ptr{Cvoid}, Ptr{UInt8}, Csize_t), ctx.data, data, length(data))
end
7 changes: 4 additions & 3 deletions src/error.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@
mbed_ioerr(ret) = throw(Base.IOError(strerror(ret), ret))

function strerror(ret, bufsize=1000)
buf = Vector{UInt8}(undef, bufsize)
ccall((:mbedtls_strerror, libmbedcrypto), Cint,
buf = Base.StringVector(bufsize)
ccall((:mbedtls_strerror, libmbedcrypto), Cvoid,

Check warning on line 22 in src/error.jl

View check run for this annotation

Codecov / codecov/patch

src/error.jl#L21-L22

Added lines #L21 - L22 were not covered by tests
(Cint, Ptr{Cvoid}, Csize_t),
ret, buf, bufsize)
s = GC.@preserve buf unsafe_string(pointer(buf))
resize!(buf, something(findfirst(0x00, buf), length(buf) + 1) - 1)
s = String(buf)

Check warning on line 26 in src/error.jl

View check run for this annotation

Codecov / codecov/patch

src/error.jl#L25-L26

Added lines #L25 - L26 were not covered by tests
if ret == MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE
s *= " (You may need to enable `ssl_conf_renegotiation!`. See " *
"https://github.com/JuliaWeb/HTTP.jl/issues/342#issuecomment-432921180)"
Expand Down
22 changes: 11 additions & 11 deletions src/md.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ function MD(kind::MDKind, key)
(Ptr{Cvoid}, Ptr{Cvoid}, Cint),
ctx.data, ctx.info.data, 1)
@err_check ccall((:mbedtls_md_hmac_starts, libmbedcrypto), Cint,
(Ptr{Cvoid}, Ptr{Cvoid}, Csize_t),
ctx.data, pointer(key), sizeof(key))
(Ptr{Cvoid}, Ptr{UInt8}, Csize_t),
ctx.data, key, sizeof(key))
ctx
end

Expand Down Expand Up @@ -145,14 +145,14 @@ Base.write(ctx::MD, i::Int8) = _write(ctx, Ref(i), sizeof(i))

function finish!(ctx::MD{false}, buf)
@err_check ccall((:mbedtls_md_finish, libmbedcrypto), Cint,
(Ptr{Cvoid}, Ptr{Cvoid}),
ctx.data, pointer(buf))
(Ptr{Cvoid}, Ptr{UInt8}),
ctx.data, buf)
end

function finish!(ctx::MD{true}, buf)
@err_check ccall((:mbedtls_md_hmac_finish, libmbedcrypto), Cint,
(Ptr{Cvoid}, Ptr{Cvoid}),
ctx.data, pointer(buf))
(Ptr{Cvoid}, Ptr{UInt8}),
ctx.data, buf)
end

function finish!(ctx::MD)
Expand All @@ -169,8 +169,8 @@ end

function digest!(kind::MDKind, msg, buf)
@err_check ccall((:mbedtls_md, libmbedcrypto), Cint,
(Ptr{Cvoid}, Ptr{Cvoid}, Csize_t, Ptr{Cvoid}),
MDInfo(kind).data, pointer(msg), sizeof(msg), pointer(buf))
(Ptr{Cvoid}, Ptr{UInt8}, Csize_t, Ptr{UInt8}),
MDInfo(kind).data, msg, sizeof(msg), buf)
end

"""
Expand Down Expand Up @@ -201,9 +201,9 @@ end

function digest!(kind::MDKind, msg, key, buf)
@err_check ccall((:mbedtls_md_hmac, libmbedcrypto), Cint,
(Ptr{Cvoid}, Ptr{Cvoid}, Csize_t, Ptr{Cvoid}, Csize_t, Ptr{Cvoid}),
MDInfo(kind).data, pointer(key), sizeof(key),
pointer(msg), sizeof(msg), pointer(buf))
(Ptr{Cvoid}, Ptr{UInt8}, Csize_t, Ptr{UInt8}, Csize_t, Ptr{UInt8}),
MDInfo(kind).data, key, sizeof(key),
msg, sizeof(msg), buf)
end

function digest(kind::MDKind, msg, key)
Expand Down
4 changes: 2 additions & 2 deletions src/ssl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@
all::Bool=true)
nbytes <= length(buf) || throw(ArgumentError("`buf` too small!"))
nread = 0
while nread < nbytes
GC.@preserve buf while nread < nbytes
nread += ssl_unsafe_read(ctx, pointer(buf) + nread, nbytes - nread)
if (nread == nbytes) || !all || eof(ctx)
break
Expand All @@ -477,7 +477,7 @@
function Base.readavailable(ctx::SSLContext)
n = UInt(MBEDTLS_SSL_MAX_CONTENT_LEN)
buf = Vector{UInt8}(undef, n)
n = ssl_unsafe_read(ctx, pointer(buf), n) ;@😬 "readavailable ⬅️ $n"
GC.@preserve buf n = ssl_unsafe_read(ctx, pointer(buf), n) ;@😬 "readavailable ⬅️ $n"

Check warning on line 480 in src/ssl.jl

View check run for this annotation

Codecov / codecov/patch

src/ssl.jl#L480

Added line #L480 was not covered by tests
return resize!(buf, n)
end

Expand Down
10 changes: 6 additions & 4 deletions src/x509_crt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@
show(io::IO, crt::CRT) = print(io, crt_info(crt))

function crt_info(crt::CRT)
buf = zeros(UInt8, 1000)
ccall((:mbedtls_x509_crt_info, libmbedx509), Cint,
buf = Base.StringVector(1000)
ret = ccall((:mbedtls_x509_crt_info, libmbedx509), Cint,

Check warning on line 20 in src/x509_crt.jl

View check run for this annotation

Codecov / codecov/patch

src/x509_crt.jl#L19-L20

Added lines #L19 - L20 were not covered by tests
(Ptr{Cvoid}, Csize_t, Cstring, Ptr{Cvoid}),
buf, 1000, "", crt.data)
GC.@preserve buf unsafe_string(pointer(buf))
buf, length(buf), "", crt.data)
ret >= 0 || mbed_err(ret)
resize!(buf, ret)
return String(buf)

Check warning on line 25 in src/x509_crt.jl

View check run for this annotation

Codecov / codecov/patch

src/x509_crt.jl#L23-L25

Added lines #L23 - L25 were not covered by tests
end

function crt_parse!(chain, buf::String)
Expand Down
Loading