1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* mock-gnome2-module.c
Copyright (C) 2011 Stefan Walter
The Gnome Keyring Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Gnome Keyring Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the Gnome Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Author: Stef Walter <stef@thewalter.net>
*/
#include "config.h"
#include "mock-gnome2-module.h"
#include "egg/egg-secure-memory.h"
#include "gkm/gkm-module.h"
#include "gnome2-store/gkm-gnome2-store.h"
EGG_SECURE_DEFINE_GLIB_GLOBALS ();
static GMutex *mutex = NULL;
GkmModule * _gkm_gnome2_store_get_module_for_testing (void);
GMutex * _gkm_module_get_scary_mutex_that_you_should_not_touch (GkmModule *module);
GkmModule *
mock_gnome2_module_initialize_and_enter (void)
{
CK_FUNCTION_LIST_PTR funcs;
GkmModule *module;
CK_RV rv;
funcs = gkm_gnome2_store_get_functions ();
rv = (funcs->C_Initialize) (NULL);
g_return_val_if_fail (rv == CKR_OK, NULL);
module = _gkm_gnome2_store_get_module_for_testing ();
g_return_val_if_fail (module, NULL);
mutex = _gkm_module_get_scary_mutex_that_you_should_not_touch (module);
mock_gnome2_module_enter ();
return module;
}
void
mock_gnome2_module_leave_and_finalize (void)
{
CK_FUNCTION_LIST_PTR funcs;
CK_RV rv;
mock_gnome2_module_leave ();
funcs = gkm_gnome2_store_get_functions ();
rv = (funcs->C_Finalize) (NULL);
g_return_if_fail (rv == CKR_OK);
}
void
mock_gnome2_module_leave (void)
{
g_assert (mutex);
g_mutex_unlock (mutex);
}
void
mock_gnome2_module_enter (void)
{
g_assert (mutex);
g_mutex_lock (mutex);
}
GkmSession *
mock_gnome2_module_open_session (gboolean writable)
{
CK_ULONG flags = CKF_SERIAL_SESSION;
CK_SESSION_HANDLE handle;
GkmModule *module;
GkmSession *session;
CK_RV rv;
module = _gkm_gnome2_store_get_module_for_testing ();
g_return_val_if_fail (module, NULL);
if (writable)
flags |= CKF_RW_SESSION;
rv = gkm_module_C_OpenSession (module, 1, flags, NULL, NULL, &handle);
g_assert (rv == CKR_OK);
session = gkm_module_lookup_session (module, handle);
g_assert (session);
return session;
}
|