Branch data Line data Source code
1 : : /*
2 : : SSSD
3 : :
4 : : NSS crypto wrappers
5 : :
6 : : Authors:
7 : : Sumit Bose <sbose@redhat.com>
8 : : Jakub Hrozek <jhrozek@redhat.com>
9 : :
10 : : Copyright (C) Red Hat, Inc 2010
11 : :
12 : : This program is free software; you can redistribute it and/or modify
13 : : it under the terms of the GNU General Public License as published by
14 : : the Free Software Foundation; either version 3 of the License, or
15 : : (at your option) any later version.
16 : :
17 : : This program is distributed in the hope that it will be useful,
18 : : but WITHOUT ANY WARRANTY; without even the implied warranty of
19 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 : : GNU General Public License for more details.
21 : :
22 : : You should have received a copy of the GNU General Public License
23 : : along with this program. If not, see <http://www.gnu.org/licenses/>.
24 : : */
25 : :
26 : : #include "config.h"
27 : :
28 : : #include <prinit.h>
29 : : #include <prerror.h>
30 : : #include <nss.h>
31 : : #include <pk11func.h>
32 : :
33 : : #include "util/util.h"
34 : :
35 : : static int nspr_nss_init_done = 0;
36 : :
37 : 24 : int nspr_nss_init(void)
38 : : {
39 : : SECStatus sret;
40 : :
41 : : /* nothing to do */
42 [ + + ]: 24 : if (nspr_nss_init_done == 1) return SECSuccess;
43 : :
44 : 13 : PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 0);
45 : :
46 : 13 : sret = NSS_NoDB_Init(NULL);
47 [ - + ]: 13 : if (sret != SECSuccess) {
48 [ # # ][ # # ]: 0 : DEBUG(1, ("Error initializing connection to NSS [%d]\n",
[ # # ][ # # ]
[ # # ]
49 : : PR_GetError()));
50 : : return EIO;
51 : : }
52 : :
53 : 13 : nspr_nss_init_done = 1;
54 : 24 : return EOK;
55 : : }
56 : :
57 : 7 : int nspr_nss_cleanup(void)
58 : : {
59 : : SECStatus sret;
60 : :
61 : : /* nothing to do */
62 [ + - ]: 7 : if (nspr_nss_init_done == 0) return SECSuccess;
63 : :
64 : 7 : sret = NSS_Shutdown();
65 [ - + ]: 7 : if (sret != SECSuccess) {
66 [ # # ][ # # ]: 0 : DEBUG(1, ("Error shutting down connection to NSS [%d]\n",
[ # # ][ # # ]
[ # # ]
67 : : PR_GetError()));
68 : : return EIO;
69 : : }
70 : :
71 : 7 : PR_Cleanup();
72 : 7 : nspr_nss_init_done = 0;
73 : 7 : return EOK;
74 : : }
|