summaryrefslogtreecommitdiff
path: root/src/starter/klips.c
blob: 5c816441916d0c7f73b708c4e4653862402aad5f (plain)
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
/* strongSwan KLIPS starter
 * Copyright (C) 2001-2002 Mathieu Lafon - Arkoon Network Security
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
 *
 * This program 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 General Public License
 * for more details.
 *
 * RCSID $Id: klips.c 4632 2008-11-11 18:37:19Z martin $
 */

#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>

#include <freeswan.h>

#include "../pluto/constants.h"
#include "../pluto/defs.h"
#include "../pluto/log.h"

#include "files.h"

bool
starter_klips_init(void)
{
    struct stat stb;

    if (stat(PROC_KLIPS, &stb) != 0)
    {
	/* ipsec module makes the pf_key proc interface visible */
	if (stat(PROC_MODULES, &stb) == 0)
	{
	    ignore_result(system("modprobe -qv ipsec"));
	}

	/* now test again */
	if (stat(PROC_KLIPS, &stb) != 0)
	{
	    DBG(DBG_CONTROL,
		DBG_log("kernel appears to lack the KLIPS IPsec stack")
	    )
	    return FALSE;
	}
    }
    
    /* load crypto algorithm modules */
    ignore_result(system("modprobe -qv ipsec_aes"));
    ignore_result(system("modprobe -qv ipsec_blowfish"));
    ignore_result(system("modprobe -qv ipsec_sha2"));

    DBG(DBG_CONTROL,
	DBG_log("Found KLIPS IPsec stack")
    )
    
    return TRUE;
}

void
starter_klips_cleanup(void)
{
    if (system("type eroute > /dev/null 2>&1") == 0)
    {
	ignore_result(system("spi --clear"));
	ignore_result(system("eroute --clear"));
    }
	else if (system("type setkey > /dev/null 2>&1") == 0)
    {
	ignore_result(system("setkey -F"));
	ignore_result(system("setkey -FP"));
    }
    else
    {
	plog("WARNING: cannot flush IPsec state/policy database");
    }
}