~ubuntu-branches/ubuntu/hardy/openswan/hardy-updates

« back to all changes in this revision

Viewing changes to packaging/linus/config-all.hmodules

  • Committer: Bazaar Package Importer
  • Author(s): Rene Mayrhofer
  • Date: 2005-01-27 16:10:11 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050127161011-idgybmyz3vwhpfiq
Tags: 2.3.0-2
Urgency HIGH due to security issue and problems with build-deps in sarge.
* Fix the security issue. Please see
  http://www.idefense.com/application/poi/display?id=190&
      type=vulnerabilities&flashstatus=false
  for more details. Thanks to Martin Schulze for informing me about
  this issue.
  Closes: #292458: Openswan XAUTH/PAM Buffer Overflow Vulnerability
* Added a Build-Dependency to lynx.
  Closes: #291143: openswan: FTBFS: Missing build dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _CONFIG_ALL_H_
 
2
/*
 
3
 * Copyright (C) 2002              Michael Richardson <mcr@freeswan.org>
 
4
 * 
 
5
 * This kernel module is free software; you can redistribute it and/or modify it
 
6
 * under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or (at your
 
8
 * option) any later version.  See <http://www.fsf.org/copyleft/lgpl.txt>.
 
9
 * 
 
10
 * This kernel module 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
 
13
 * License for more details.
 
14
 *
 
15
 * RCSID $Id: config-all.hmodules,v 1.2 2004/08/22 20:12:46 mcr Exp $
 
16
 */
 
17
#define _CONFIG_ALL_H_  /* seen it, no need to see it again */
 
18
 
 
19
#define CONFIG_KLIPS 1
 
20
 
 
21
#ifndef CONFIG_KLIPS_AH
 
22
#define CONFIG_KLIPS_AH 1
 
23
#endif
 
24
 
 
25
#ifndef CONFIG_KLIPS_DEBUG 
 
26
#define CONFIG_KLIPS_DEBUG 1
 
27
#endif
 
28
 
 
29
#ifndef CONFIG_KLIPS_ESP
 
30
#define CONFIG_KLIPS_ESP 1
 
31
#endif
 
32
 
 
33
#ifndef CONFIG_KLIPS_IPCOMP
 
34
#define CONFIG_KLIPS_IPCOMP 1
 
35
#endif
 
36
 
 
37
#ifndef CONFIG_KLIPS_IPIP
 
38
#define CONFIG_KLIPS_IPIP 1
 
39
#endif
 
40
 
 
41
#ifndef CONFIG_KLIPS_AUTH_HMAC_MD5
 
42
#define CONFIG_KLIPS_AUTH_HMAC_MD5 1
 
43
#endif
 
44
 
 
45
#ifndef CONFIG_KLIPS_AUTH_HMAC_SHA1
 
46
#define CONFIG_KLIPS_AUTH_HMAC_SHA1 1
 
47
#endif 
 
48
 
 
49
#ifndef CONFIG_KLIPS_DYNDEV
 
50
#define CONFIG_KLIPS_DYNDEV 1
 
51
#endif
 
52
 
 
53
#ifndef CONFIG_KLIPS_ENC_3DES
 
54
#define CONFIG_KLIPS_ENC_3DES 1
 
55
#endif
 
56
 
 
57
#ifndef CONFIG_KLIPS_NAT_TRAVERSAL
 
58
#define CONFIG_KLIPS_NAT_TRAVERSAL 1
 
59
#endif
 
60
 
 
61
#ifndef CONFIG_IPSEC_NAT_TRAVERSAL
 
62
#define CONFIG_IPSEC_NAT_TRAVERSAL 1
 
63
#endif
 
64
 
 
65
#ifndef CONFIG_KLIPS_ENC_AES
 
66
#define CONFIG_KLIPS_ENC_AES 1
 
67
#endif
 
68
 
 
69
/* off by default for now */
 
70
#ifndef CONFIG_KLIPS_ENC_CRYPTOAPI
 
71
#define CONFIG_KLIPS_ENC_CRYPTOAPI 0
 
72
#endif
 
73
 
 
74
#define CONFIG_KLIPS_ALG_CRYPTOAPI #error
 
75
#define CONFIG_KLIPS_ALG_AES #error
 
76
 
 
77
#ifndef CONFIG_KLIPS_ALG_AES_MAC
 
78
#define CONFIG_KLIPS_ALG_AES_MAC 1
 
79
#endif
 
80
 
 
81
#ifndef CONFIG_KLIPS_REGRESS
 
82
#define CONFIG_KLIPS_REGRESS 0
 
83
#endif
 
84
 
 
85
/* ALGO: */
 
86
#if 0
 
87
/* goal: cleanup KLIPS code from hardcoded algos :} */
 
88
#undef CONFIG_KLIPS_AUTH_HMAC_MD5
 
89
#undef CONFIG_KLIPS_AUTH_HMAC_SHA1
 
90
#undef CONFIG_KLIPS_ENC_3DES
 
91
#endif
 
92
 
 
93
#ifndef CONFIG_KLIPS_ALG
 
94
#define CONFIG_KLIPS_ALG 1
 
95
#endif
 
96
 
 
97
#endif /* _CONFIG_ALL_H */