Unlock mutex on exceptions in gpgme helper
This commit is contained in:
parent
f24b47c44d
commit
a4cb998ec4
|
@ -6,44 +6,50 @@ namespace GPGHelper {
|
||||||
private static bool initialized = false;
|
private static bool initialized = false;
|
||||||
|
|
||||||
public static string encrypt_armor(string plain, Key[] keys, EncryptFlags flags) throws GLib.Error {
|
public static string encrypt_armor(string plain, Key[] keys, EncryptFlags flags) throws GLib.Error {
|
||||||
initialize();
|
|
||||||
|
|
||||||
global_mutex.lock();
|
global_mutex.lock();
|
||||||
|
try {
|
||||||
|
initialize();
|
||||||
Data plain_data = Data.create_from_memory(plain.data, false);
|
Data plain_data = Data.create_from_memory(plain.data, false);
|
||||||
Context context = Context.create();
|
Context context = Context.create();
|
||||||
context.set_armor(true);
|
context.set_armor(true);
|
||||||
Data enc_data = context.op_encrypt(keys, flags, plain_data);
|
Data enc_data = context.op_encrypt(keys, flags, plain_data);
|
||||||
global_mutex.unlock();
|
|
||||||
return get_string_from_data(enc_data);
|
return get_string_from_data(enc_data);
|
||||||
|
} finally {
|
||||||
|
global_mutex.unlock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string decrypt(string encr) throws GLib.Error {
|
public static string decrypt(string encr) throws GLib.Error {
|
||||||
initialize();
|
|
||||||
|
|
||||||
global_mutex.lock();
|
global_mutex.lock();
|
||||||
|
try {
|
||||||
|
initialize();
|
||||||
Data enc_data = Data.create_from_memory(encr.data, false);
|
Data enc_data = Data.create_from_memory(encr.data, false);
|
||||||
Context context = Context.create();
|
Context context = Context.create();
|
||||||
Data dec_data = context.op_decrypt(enc_data);
|
Data dec_data = context.op_decrypt(enc_data);
|
||||||
global_mutex.unlock();
|
|
||||||
return get_string_from_data(dec_data);
|
return get_string_from_data(dec_data);
|
||||||
|
} finally {
|
||||||
|
global_mutex.unlock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string sign(string plain, SigMode mode, Key? key = null) throws GLib.Error {
|
public static string sign(string plain, SigMode mode, Key? key = null) throws GLib.Error {
|
||||||
initialize();
|
|
||||||
|
|
||||||
global_mutex.lock();
|
global_mutex.lock();
|
||||||
|
try {
|
||||||
|
initialize();
|
||||||
Data plain_data = Data.create_from_memory(plain.data, false);
|
Data plain_data = Data.create_from_memory(plain.data, false);
|
||||||
Context context = Context.create();
|
Context context = Context.create();
|
||||||
if (key != null) context.signers_add(key);
|
if (key != null) context.signers_add(key);
|
||||||
Data signed_data = context.op_sign(plain_data, mode);
|
Data signed_data = context.op_sign(plain_data, mode);
|
||||||
global_mutex.unlock();
|
|
||||||
return get_string_from_data(signed_data);
|
return get_string_from_data(signed_data);
|
||||||
|
} finally {
|
||||||
|
global_mutex.unlock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string? get_sign_key(string signature, string? text) throws GLib.Error {
|
public static string? get_sign_key(string signature, string? text) throws GLib.Error {
|
||||||
initialize();
|
|
||||||
|
|
||||||
global_mutex.lock();
|
global_mutex.lock();
|
||||||
|
try {
|
||||||
|
initialize();
|
||||||
Data sig_data = Data.create_from_memory(signature.data, false);
|
Data sig_data = Data.create_from_memory(signature.data, false);
|
||||||
Data text_data;
|
Data text_data;
|
||||||
if (text != null) {
|
if (text != null) {
|
||||||
|
@ -55,11 +61,15 @@ public static string? get_sign_key(string signature, string? text) throws GLib.E
|
||||||
context.op_verify(sig_data, text_data);
|
context.op_verify(sig_data, text_data);
|
||||||
VerifyResult* verify_res = context.op_verify_result();
|
VerifyResult* verify_res = context.op_verify_result();
|
||||||
if (verify_res == null || verify_res.signatures == null) return null;
|
if (verify_res == null || verify_res.signatures == null) return null;
|
||||||
global_mutex.unlock();
|
|
||||||
return verify_res.signatures.fpr;
|
return verify_res.signatures.fpr;
|
||||||
|
} finally {
|
||||||
|
global_mutex.unlock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Gee.List<Key> get_keylist(string? pattern = null, bool secret_only = false) throws GLib.Error {
|
public static Gee.List<Key> get_keylist(string? pattern = null, bool secret_only = false) throws GLib.Error {
|
||||||
|
global_mutex.lock();
|
||||||
|
try {
|
||||||
initialize();
|
initialize();
|
||||||
|
|
||||||
Gee.List<Key> keys = new ArrayList<Key>();
|
Gee.List<Key> keys = new ArrayList<Key>();
|
||||||
|
@ -74,6 +84,9 @@ public static Gee.List<Key> get_keylist(string? pattern = null, bool secret_only
|
||||||
if (e.code != GPGError.ErrorCode.EOF) throw e;
|
if (e.code != GPGError.ErrorCode.EOF) throw e;
|
||||||
}
|
}
|
||||||
return keys;
|
return keys;
|
||||||
|
} finally {
|
||||||
|
global_mutex.unlock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Key? get_public_key(string sig) throws GLib.Error {
|
public static Key? get_public_key(string sig) throws GLib.Error {
|
||||||
|
@ -85,18 +98,18 @@ public static Key? get_private_key(string sig) throws GLib.Error {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Key? get_key(string sig, bool priv) throws GLib.Error {
|
private static Key? get_key(string sig, bool priv) throws GLib.Error {
|
||||||
initialize();
|
|
||||||
|
|
||||||
global_mutex.lock();
|
global_mutex.lock();
|
||||||
|
try {
|
||||||
|
initialize();
|
||||||
Context context = Context.create();
|
Context context = Context.create();
|
||||||
Key key = context.get_key(sig, priv);
|
Key key = context.get_key(sig, priv);
|
||||||
global_mutex.unlock();
|
|
||||||
return key;
|
return key;
|
||||||
|
} finally {
|
||||||
|
global_mutex.unlock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string get_string_from_data(Data data) {
|
private static string get_string_from_data(Data data) {
|
||||||
initialize();
|
|
||||||
|
|
||||||
data.seek(0);
|
data.seek(0);
|
||||||
uint8[] buf = new uint8[256];
|
uint8[] buf = new uint8[256];
|
||||||
ssize_t? len = null;
|
ssize_t? len = null;
|
||||||
|
|
Loading…
Reference in a new issue