2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "random_plugin.h"
19 #include <sys/types.h>
26 #include "random_rng.h"
29 # define DEV_RANDOM "/dev/random"
33 # define DEV_URANDOM "/dev/urandom"
36 typedef struct private_random_plugin_t private_random_plugin_t
;
39 * private data of random_plugin
41 struct private_random_plugin_t
{
46 random_plugin_t
public;
49 /** /dev/random file descriptor */
50 static int dev_random
= -1;
51 /** /dev/urandom file descriptor */
52 static int dev_urandom
= -1;
57 int random_plugin_get_dev_random()
65 int random_plugin_get_dev_urandom()
71 * Open a random device file
73 static bool open_dev(char *file
, int *fd
)
75 *fd
= open(file
, O_RDONLY
);
78 DBG1(DBG_LIB
, "opening \"%s\" failed: %s", file
, strerror(errno
));
84 METHOD(plugin_t
, get_name
, char*,
85 private_random_plugin_t
*this)
90 METHOD(plugin_t
, get_features
, int,
91 private_random_plugin_t
*this, plugin_feature_t
*features
[])
93 static plugin_feature_t f
[] = {
94 PLUGIN_REGISTER(RNG
, random_rng_create
),
95 PLUGIN_PROVIDE(RNG
, RNG_STRONG
),
96 PLUGIN_PROVIDE(RNG
, RNG_TRUE
),
102 METHOD(plugin_t
, destroy
, void,
103 private_random_plugin_t
*this)
105 if (dev_random
!= -1)
109 if (dev_urandom
!= -1)
119 plugin_t
*random_plugin_create()
121 private_random_plugin_t
*this;
122 char *urandom_file
, *random_file
;
127 .get_name
= _get_name
,
128 .get_features
= _get_features
,
134 urandom_file
= lib
->settings
->get_str(lib
->settings
,
135 "libstrongswan.plugins.random.urandom", DEV_URANDOM
);
136 random_file
= lib
->settings
->get_str(lib
->settings
,
137 "libstrongswan.plugins.random.random", DEV_RANDOM
);
138 if (!open_dev(urandom_file
, &dev_urandom
) ||
139 !open_dev(random_file
, &dev_random
))
145 return &this->public.plugin
;