1 /* strongSwan IPsec starter comparison functions
2 * Copyright (C) 2001-2002 Mathieu Lafon - Arkoon Network Security
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 #include "../pluto/constants.h"
20 #include "../pluto/defs.h"
26 #define VARCMP(obj) if (c1->obj != c2->obj) return FALSE
27 #define ADDCMP(obj) if (!sameaddr(&c1->obj,&c2->obj)) return FALSE
28 #define SUBCMP(obj) if (!samesubnet(&c1->obj,&c2->obj)) return FALSE
29 #define STRCMP(obj) if (strcmp(c1->obj,c2->obj)) return FALSE
32 starter_cmp_end(starter_end_t
*c1
, starter_end_t
*c2
)
34 if ((c1
== NULL
) || (c2
== NULL
))
47 VARCMP(has_client_wildcard
);
48 VARCMP(has_port_wildcard
);
55 return cmp_args(KW_END_FIRST
, KW_END_LAST
, (char *)c1
, (char *)c2
);
59 starter_cmp_conn(starter_conn_t
*c1
, starter_conn_t
*c2
)
61 if ((c1
== NULL
) || (c2
== NULL
))
66 VARCMP(tunnel_addr_family
);
67 VARCMP(mark_in
.value
);
69 VARCMP(mark_out
.value
);
72 if (!starter_cmp_end(&c1
->left
, &c2
->left
))
74 if (!starter_cmp_end(&c1
->right
, &c2
->right
))
77 return cmp_args(KW_CONN_NAME
, KW_CONN_LAST
, (char *)c1
, (char *)c2
);
81 starter_cmp_ca(starter_ca_t
*c1
, starter_ca_t
*c2
)
83 if (c1
== NULL
|| c2
== NULL
)
86 return cmp_args(KW_CA_NAME
, KW_CA_LAST
, (char *)c1
, (char *)c2
);
90 starter_cmp_klips(starter_config_t
*c1
, starter_config_t
*c2
)
92 if ((c1
== NULL
) || (c2
== NULL
))
95 return cmp_args(KW_KLIPS_FIRST
, KW_KLIPS_LAST
, (char *)c1
, (char *)c2
);
99 starter_cmp_pluto(starter_config_t
*c1
, starter_config_t
*c2
)
101 if ((c1
== NULL
) || (c2
== NULL
))
104 return cmp_args(KW_PLUTO_FIRST
, KW_PLUTO_LAST
, (char *)c1
, (char *)c2
);