Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
e8483995
Commit
e8483995
authored
Jul 13, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(legacy) cleanups and moves related to openvpn.inc
parent
5db10734
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
109 additions
and
103 deletions
+109
-103
openvpn.inc
src/etc/inc/openvpn.inc
+0
-103
status_services.php
src/www/status_services.php
+6
-0
system_crlmanager.php
src/www/system_crlmanager.php
+32
-0
system_gateway_groups.php
src/www/system_gateway_groups.php
+30
-0
vpn_openvpn_client.php
src/www/vpn_openvpn_client.php
+14
-0
vpn_openvpn_csc.php
src/www/vpn_openvpn_csc.php
+11
-0
vpn_openvpn_server.php
src/www/vpn_openvpn_server.php
+16
-0
No files found.
src/etc/inc/openvpn.inc
View file @
e8483995
...
...
@@ -70,32 +70,6 @@ $openvpn_verbosity_level = array(
* -mgrooms
*/
global
$openvpn_dh_lengths
;
$openvpn_dh_lengths
=
array
(
1024
,
2048
,
4096
);
global
$openvpn_cert_depths
;
$openvpn_cert_depths
=
array
(
1
=>
"One (Client+Server)"
,
2
=>
"Two (Client+Intermediate+Server)"
,
3
=>
"Three (Client+2xIntermediate+Server)"
,
4
=>
"Four (Client+3xIntermediate+Server)"
,
5
=>
"Five (Client+4xIntermediate+Server)"
);
global
$openvpn_server_modes
;
$openvpn_server_modes
=
array
(
'p2p_tls'
=>
gettext
(
"Peer to Peer ( SSL/TLS )"
),
'p2p_shared_key'
=>
gettext
(
"Peer to Peer ( Shared Key )"
),
'server_tls'
=>
gettext
(
"Remote Access ( SSL/TLS )"
),
'server_user'
=>
gettext
(
"Remote Access ( User Auth )"
),
'server_tls_user'
=>
gettext
(
"Remote Access ( SSL/TLS + User Auth )"
));
global
$openvpn_client_modes
;
$openvpn_client_modes
=
array
(
'p2p_tls'
=>
gettext
(
"Peer to Peer ( SSL/TLS )"
),
'p2p_shared_key'
=>
gettext
(
"Peer to Peer ( Shared Key )"
)
);
global
$openvpn_compression_modes
;
$openvpn_compression_modes
=
array
(
''
=>
gettext
(
"No Preference"
),
...
...
@@ -250,13 +224,6 @@ function openvpn_validate_engine($engine) {
return
array_key_exists
(
$engine
,
$engines
);
}
function
openvpn_validate_host
(
$value
,
$name
)
{
$value
=
trim
(
$value
);
if
(
empty
(
$value
)
||
(
!
is_domain
(
$value
)
&&
!
is_ipaddr
(
$value
)))
return
sprintf
(
gettext
(
"The field '%s' must contain a valid IP address or domain name."
),
$name
);
return
false
;
}
function
openvpn_validate_port
(
$value
,
$name
)
{
$value
=
trim
(
$value
);
if
(
empty
(
$value
)
||
!
is_numeric
(
$value
)
||
$value
<
0
||
(
$value
>
65535
))
...
...
@@ -872,10 +839,6 @@ function openvpn_delete($mode, & $settings)
@
array_map
(
'unlink'
,
glob
(
"/var/etc/openvpn/
{
$mode_id
}
.*"
));
}
function
openvpn_cleanup_csc
(
$common_name
)
{
@
unlink
(
'/var/etc/openvpn-csc/'
.
basename
(
$common_name
));
}
function
openvpn_resync_csc
(
&
$settings
)
{
...
...
@@ -936,10 +899,6 @@ function openvpn_resync_csc(&$settings)
chgrp
(
$fpath
,
'nobody'
);
}
function
openvpn_delete_csc
(
&
$settings
)
{
@
unlink
(
"/var/etc/openvpn-csc/
{
$settings
[
'common_name'
]
}
"
);
}
function
openvpn_resync
(
$mode
,
$settings
)
{
...
...
@@ -984,34 +943,6 @@ function openvpn_resync_all($interface = '')
}
// Resync and restart all VPNs using a gateway group.
function
openvpn_resync_gwgroup
(
$gwgroupname
=
""
)
{
global
$g
,
$config
;
if
(
$gwgroupname
<>
""
)
{
if
(
is_array
(
$config
[
'openvpn'
][
'openvpn-server'
]))
{
foreach
(
$config
[
'openvpn'
][
'openvpn-server'
]
as
&
$settings
)
{
if
(
$gwgroupname
==
$settings
[
'interface'
])
{
log_error
(
"Resyncing OpenVPN for gateway group "
.
$gwgroupname
.
" server "
.
$settings
[
"description"
]
.
"."
);
openvpn_resync
(
'server'
,
$settings
);
}
}
}
if
(
is_array
(
$config
[
'openvpn'
][
'openvpn-client'
]))
{
foreach
(
$config
[
'openvpn'
][
'openvpn-client'
]
as
&
$settings
)
{
if
(
$gwgroupname
==
$settings
[
'interface'
])
{
log_error
(
"Resyncing OpenVPN for gateway group "
.
$gwgroupname
.
" client "
.
$settings
[
"description"
]
.
"."
);
openvpn_resync
(
'client'
,
$settings
);
}
}
}
// Note: no need to resysnc Client Specific (csc) here, as changes to the OpenVPN real interface do not effect these.
}
else
log_error
(
"openvpn_resync_gwgroup called with null gwgroup parameter."
);
}
function
openvpn_get_active_servers
(
$type
=
"multipoint"
)
{
global
$config
,
$g
;
...
...
@@ -1236,36 +1167,6 @@ function openvpn_get_client_status($client, $socket) {
return
$client
;
}
function
openvpn_refresh_crls
()
{
global
$g
,
$config
;
openvpn_create_dirs
();
if
(
isset
(
$config
[
'openvpn'
][
'openvpn-server'
])
&&
is_array
(
$config
[
'openvpn'
][
'openvpn-server'
]))
{
foreach
(
$config
[
'openvpn'
][
'openvpn-server'
]
as
$settings
)
{
if
(
empty
(
$settings
))
continue
;
if
(
isset
(
$settings
[
'disable'
]))
continue
;
// Write the settings for the keys
switch
(
$settings
[
'mode'
])
{
case
'p2p_tls'
:
case
'server_tls'
:
case
'server_tls_user'
:
case
'server_user'
:
if
(
!
empty
(
$settings
[
'crlref'
]))
{
$crl
=
lookup_crl
(
$settings
[
'crlref'
]);
crl_update
(
$crl
);
$fpath
=
"/var/etc/openvpn/server
{
$settings
[
'vpnid'
]
}
.crl-verify"
;
file_put_contents
(
$fpath
,
base64_decode
(
$crl
[
'text'
]));
@
chmod
(
$fpath
,
0644
);
}
break
;
}
}
}
}
function
openvpn_create_dirs
()
{
@
mkdir
(
'/var/etc/openvpn-csc'
,
0750
);
...
...
@@ -1376,7 +1277,3 @@ function openvpn_get_settings($mode, $vpnid) {
return
array
();
}
function
openvpn_restart_by_vpnid
(
$mode
,
$vpnid
)
{
$settings
=
openvpn_get_settings
(
$mode
,
$vpnid
);
openvpn_restart
(
$mode
,
$settings
);
}
src/www/status_services.php
View file @
e8483995
...
...
@@ -31,6 +31,12 @@ require_once("guiconfig.inc");
require_once
(
"services.inc"
);
require_once
(
"shortcuts.inc"
);
function
openvpn_restart_by_vpnid
(
$mode
,
$vpnid
)
{
$settings
=
openvpn_get_settings
(
$mode
,
$vpnid
);
openvpn_restart
(
$mode
,
$settings
);
}
$service_name
=
''
;
if
(
isset
(
$_GET
[
'service'
]))
$service_name
=
htmlspecialchars
(
$_GET
[
'service'
]);
...
...
src/www/system_crlmanager.php
View file @
e8483995
...
...
@@ -30,6 +30,38 @@ require_once("guiconfig.inc");
require_once
(
"certs.inc"
);
require_once
(
'openvpn.inc'
);
function
openvpn_refresh_crls
()
{
global
$g
,
$config
;
openvpn_create_dirs
();
if
(
isset
(
$config
[
'openvpn'
][
'openvpn-server'
])
&&
is_array
(
$config
[
'openvpn'
][
'openvpn-server'
]))
{
foreach
(
$config
[
'openvpn'
][
'openvpn-server'
]
as
$settings
)
{
if
(
empty
(
$settings
))
continue
;
if
(
isset
(
$settings
[
'disable'
]))
continue
;
// Write the settings for the keys
switch
(
$settings
[
'mode'
])
{
case
'p2p_tls'
:
case
'server_tls'
:
case
'server_tls_user'
:
case
'server_user'
:
if
(
!
empty
(
$settings
[
'crlref'
]))
{
$crl
=
lookup_crl
(
$settings
[
'crlref'
]);
crl_update
(
$crl
);
$fpath
=
"/var/etc/openvpn/server
{
$settings
[
'vpnid'
]
}
.crl-verify"
;
file_put_contents
(
$fpath
,
base64_decode
(
$crl
[
'text'
]));
@
chmod
(
$fpath
,
0644
);
}
break
;
}
}
}
}
function
cert_unrevoke
(
$cert
,
&
$crl
)
{
global
$config
;
if
(
!
is_crl_internal
(
$crl
))
...
...
src/www/system_gateway_groups.php
View file @
e8483995
...
...
@@ -32,6 +32,36 @@ require_once("functions.inc");
require_once
(
"filter.inc"
);
require_once
(
"openvpn.inc"
);
// Resync and restart all VPNs using a gateway group.
function
openvpn_resync_gwgroup
(
$gwgroupname
=
""
)
{
global
$g
,
$config
;
if
(
$gwgroupname
<>
""
)
{
if
(
is_array
(
$config
[
'openvpn'
][
'openvpn-server'
]))
{
foreach
(
$config
[
'openvpn'
][
'openvpn-server'
]
as
&
$settings
)
{
if
(
$gwgroupname
==
$settings
[
'interface'
])
{
log_error
(
"Resyncing OpenVPN for gateway group "
.
$gwgroupname
.
" server "
.
$settings
[
"description"
]
.
"."
);
openvpn_resync
(
'server'
,
$settings
);
}
}
}
if
(
is_array
(
$config
[
'openvpn'
][
'openvpn-client'
]))
{
foreach
(
$config
[
'openvpn'
][
'openvpn-client'
]
as
&
$settings
)
{
if
(
$gwgroupname
==
$settings
[
'interface'
])
{
log_error
(
"Resyncing OpenVPN for gateway group "
.
$gwgroupname
.
" client "
.
$settings
[
"description"
]
.
"."
);
openvpn_resync
(
'client'
,
$settings
);
}
}
}
// Note: no need to resysnc Client Specific (csc) here, as changes to the OpenVPN real interface do not effect these.
}
else
log_error
(
"openvpn_resync_gwgroup called with null gwgroup parameter."
);
}
if
(
!
is_array
(
$config
[
'gateways'
]))
{
$config
[
'gateways'
]
=
array
();
}
...
...
src/www/vpn_openvpn_client.php
View file @
e8483995
...
...
@@ -30,6 +30,20 @@
require_once
(
"guiconfig.inc"
);
require_once
(
"openvpn.inc"
);
function
openvpn_validate_host
(
$value
,
$name
)
{
$value
=
trim
(
$value
);
if
(
empty
(
$value
)
||
(
!
is_domain
(
$value
)
&&
!
is_ipaddr
(
$value
)))
return
sprintf
(
gettext
(
"The field '%s' must contain a valid IP address or domain name."
),
$name
);
return
false
;
}
$openvpn_client_modes
=
array
(
'p2p_tls'
=>
gettext
(
"Peer to Peer ( SSL/TLS )"
),
'p2p_shared_key'
=>
gettext
(
"Peer to Peer ( Shared Key )"
)
);
$pgtitle
=
array
(
gettext
(
"OpenVPN"
),
gettext
(
"Client"
));
$shortcut_section
=
"openvpn"
;
...
...
src/www/vpn_openvpn_csc.php
View file @
e8483995
...
...
@@ -29,6 +29,17 @@
require_once
(
"guiconfig.inc"
);
require_once
(
"openvpn.inc"
);
function
openvpn_cleanup_csc
(
$common_name
)
{
@
unlink
(
'/var/etc/openvpn-csc/'
.
basename
(
$common_name
));
}
function
openvpn_delete_csc
(
&
$settings
)
{
@
unlink
(
"/var/etc/openvpn-csc/
{
$settings
[
'common_name'
]
}
"
);
}
$pgtitle
=
array
(
gettext
(
"OpenVPN"
),
gettext
(
"Client Specific Override"
));
$shortcut_section
=
"openvpn"
;
...
...
src/www/vpn_openvpn_server.php
View file @
e8483995
...
...
@@ -30,6 +30,22 @@
require_once
(
"guiconfig.inc"
);
require_once
(
"openvpn.inc"
);
$openvpn_dh_lengths
=
array
(
1024
,
2048
,
4096
);
$openvpn_cert_depths
=
array
(
1
=>
"One (Client+Server)"
,
2
=>
"Two (Client+Intermediate+Server)"
,
3
=>
"Three (Client+2xIntermediate+Server)"
,
4
=>
"Four (Client+3xIntermediate+Server)"
,
5
=>
"Five (Client+4xIntermediate+Server)"
);
$openvpn_server_modes
=
array
(
'p2p_tls'
=>
gettext
(
"Peer to Peer ( SSL/TLS )"
),
'p2p_shared_key'
=>
gettext
(
"Peer to Peer ( Shared Key )"
),
'server_tls'
=>
gettext
(
"Remote Access ( SSL/TLS )"
),
'server_user'
=>
gettext
(
"Remote Access ( User Auth )"
),
'server_tls_user'
=>
gettext
(
"Remote Access ( SSL/TLS + User Auth )"
));
if
(
!
is_array
(
$config
[
'openvpn'
][
'openvpn-server'
]))
{
$config
[
'openvpn'
][
'openvpn-server'
]
=
array
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment