summaryrefslogtreecommitdiff
path: root/usr.sbin/relayd/parse.y
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2009-04-02 14:30:52 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2009-04-02 14:30:52 +0000
commit117177735019c97721565de7e00119449b55dd72 (patch)
tree67cf83929709feb5e4526b048fbf3cfab8c9ab9e /usr.sbin/relayd/parse.y
parent714137767d4e5dcc2e091bf3dba123f121d00853 (diff)
add support to specify a ca file (eg. /etc/ssl/cert.pem) to verify ssl
server certificates when connecting as an SSL client from relays. it works so far, but needs more testing and is currently lacking support for certificate revocation (like CRL or OCSP). the file ssl_privsep.c is extended to implement more code that should be in openssl to allow loading the ca from chroot...
Diffstat (limited to 'usr.sbin/relayd/parse.y')
-rw-r--r--usr.sbin/relayd/parse.y15
1 files changed, 12 insertions, 3 deletions
diff --git a/usr.sbin/relayd/parse.y b/usr.sbin/relayd/parse.y
index ded18cde6a9..09e99fb082f 100644
--- a/usr.sbin/relayd/parse.y
+++ b/usr.sbin/relayd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.130 2009/04/01 15:07:38 reyk Exp $ */
+/* $OpenBSD: parse.y,v 1.131 2009/04/02 14:30:51 reyk Exp $ */
/*
* Copyright (c) 2007, 2008 Reyk Floeter <reyk@openbsd.org>
@@ -127,7 +127,7 @@ typedef struct {
%}
-%token ALL APPEND BACKLOG BACKUP BUFFER CACHE CHANGE CHECK
+%token ALL APPEND BACKLOG BACKUP BUFFER CA CACHE CHANGE CHECK
%token CIPHERS CODE COOKIE DEMOTE DIGEST DISABLE ERROR EXPECT
%token EXTERNAL FILENAME FILTER FORWARD FROM HASH HEADER HOST ICMP
%token INCLUDE INET INET6 INTERFACE INTERVAL IP LABEL LISTEN
@@ -136,7 +136,7 @@ typedef struct {
%token QUERYSTR REAL REDIRECT RELAY REMOVE REQUEST RESPONSE RETRY
%token RETURN ROUNDROBIN ROUTE SACK SCRIPT SEND SESSION SOCKET
%token SSL STICKYADDR STYLE TABLE TAG TCP TIMEOUT TO
-%token TRANSPARENT TRAP UPDATES URL VIRTUAL WITH
+%token TRANSPARENT TRAP UPDATES URL VIRTUAL WITH
%token <v.string> STRING
%token <v.number> NUMBER
%type <v.string> hostname interface table
@@ -886,6 +886,14 @@ sslflags : SESSION CACHE sslcache { proto->cache = $3; }
}
free($2);
}
+ | CA FILENAME STRING {
+ if (proto->sslca != NULL) {
+ yyerror("sslca already specified");
+ free($3);
+ YYERROR;
+ }
+ proto->sslca = $3;
+ }
| NO flag { proto->sslflags &= ~($2); }
| flag { proto->sslflags |= $1; }
;
@@ -1466,6 +1474,7 @@ lookup(char *s)
{ "backlog", BACKLOG },
{ "backup", BACKUP },
{ "buffer", BUFFER },
+ { "ca", CA },
{ "cache", CACHE },
{ "change", CHANGE },
{ "check", CHECK },