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
58899e55
Commit
58899e55
authored
Mar 02, 2015
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src: prune unused xmlreader/xmlwriter code
parent
797b0e64
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
313 deletions
+9
-313
config.gui.inc
src/etc/inc/config.gui.inc
+2
-20
config.inc
src/etc/inc/config.inc
+1
-4
notices.inc
src/etc/inc/notices.inc
+4
-18
pkg-utils.inc
src/etc/inc/pkg-utils.inc
+1
-4
xmlreader.inc
src/etc/inc/xmlreader.inc
+0
-266
rc.php_ini_setup
src/etc/rc.php_ini_setup
+1
-1
No files found.
src/etc/inc/config.gui.inc
View file @
58899e55
<?php
<?php
/****h* pfSense/config
* NAME
* config.gui.inc - Functions to manipulate config.xml
* DESCRIPTION
* This include contains various config.xml specific functions.
* HISTORY
* $Id$
******
config.gui.inc
/*
Copyright (C) 2004-2010 Scott Ullrich
Copyright (C) 2004-2010 Scott Ullrich
All rights reserved.
originally part of m0n0wall (http://m0n0.ch/wall)
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
All rights reserved.
All rights reserved.
...
@@ -36,10 +25,6 @@
...
@@ -36,10 +25,6 @@
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
POSSIBILITY OF SUCH DAMAGE.
pfSense_BUILDER_BINARIES: /sbin/mount /sbin/umount /sbin/halt /sbin/fsck
pfSense_MODULE: config
*/
*/
require_once
(
"globals.inc"
);
require_once
(
"globals.inc"
);
...
@@ -55,10 +40,7 @@ require_once('config.lib.inc');
...
@@ -55,10 +40,7 @@ require_once('config.lib.inc');
require_once
(
"notices.inc"
);
require_once
(
"notices.inc"
);
require_once
(
"util.inc"
);
require_once
(
"util.inc"
);
require_once
(
"IPv6.inc"
);
require_once
(
"IPv6.inc"
);
if
(
file_exists
(
"/cf/conf/use_xmlreader"
))
require_once
(
"xmlparse.inc"
);
require_once
(
"xmlreader.inc"
);
else
require_once
(
"xmlparse.inc"
);
require_once
(
"crypt.inc"
);
require_once
(
"crypt.inc"
);
/* read platform */
/* read platform */
...
...
src/etc/inc/config.inc
View file @
58899e55
...
@@ -45,10 +45,7 @@ require_once("notices.inc");
...
@@ -45,10 +45,7 @@ require_once("notices.inc");
require_once
(
"util.inc"
);
require_once
(
"util.inc"
);
require_once
(
"IPv6.inc"
);
require_once
(
"IPv6.inc"
);
require_once
(
'config.lib.inc'
);
require_once
(
'config.lib.inc'
);
if
(
file_exists
(
"/cf/conf/use_xmlreader"
))
require_once
(
"xmlparse.inc"
);
require_once
(
"xmlreader.inc"
);
else
require_once
(
"xmlparse.inc"
);
require_once
(
"crypt.inc"
);
require_once
(
"crypt.inc"
);
/* read platform */
/* read platform */
...
...
src/etc/inc/notices.inc
View file @
58899e55
<?php
<?php
/****h* pfSense/notices
* NAME
/*
* notices.inc - pfSense notice utilities
* DESCRIPTION
* This include contains the pfSense notice facilities.
* HISTORY
* $Id$
******
*
* Copyright (C) 2009 Scott Ullrich (sullrich@gmail.com)
* Copyright (C) 2009 Scott Ullrich (sullrich@gmail.com)
* Copyright (C) 2005 Colin Smith (ethethlay@gmail.com)
* Copyright (C) 2005 Colin Smith (ethethlay@gmail.com)
* All rights reserved.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* modification, are permitted provided that the following conditions are met:
*
*
...
@@ -34,11 +28,6 @@
...
@@ -34,11 +28,6 @@
*
*
*/
*/
/*
pfSense_BUILDER_BINARIES: /bin/echo
pfSense_MODULE: notifications
*/
require_once
(
"globals.inc"
);
require_once
(
"globals.inc"
);
require_once
(
"led.inc"
);
require_once
(
"led.inc"
);
...
@@ -175,10 +164,7 @@ function close_notice($id) {
...
@@ -175,10 +164,7 @@ function close_notice($id) {
* Outputs notices in XML formatted text
* Outputs notices in XML formatted text
******/
******/
function
dump_xml_notices
()
{
function
dump_xml_notices
()
{
if
(
file_exists
(
"/cf/conf/use_xmlreader"
))
require_once
(
"xmlparse.inc"
);
require_once
(
"xmlreader.inc"
);
else
require_once
(
"xmlparse.inc"
);
global
$notice_path
,
$listtags
;
global
$notice_path
,
$listtags
;
$listtags
[]
=
'notice'
;
$listtags
[]
=
'notice'
;
if
(
!
$notices
=
get_notices
())
return
;
if
(
!
$notices
=
get_notices
())
return
;
...
...
src/etc/inc/pkg-utils.inc
View file @
58899e55
...
@@ -31,10 +31,7 @@
...
@@ -31,10 +31,7 @@
require_once
(
"globals.inc"
);
require_once
(
"globals.inc"
);
require_once
(
"xmlrpc.inc"
);
require_once
(
"xmlrpc.inc"
);
require_once
(
"service-utils.inc"
);
require_once
(
"service-utils.inc"
);
if
(
file_exists
(
"/cf/conf/use_xmlreader"
))
require_once
(
"xmlparse.inc"
);
require_once
(
"xmlreader.inc"
);
else
require_once
(
"xmlparse.inc"
);
require_once
(
"pfsense-utils.inc"
);
require_once
(
"pfsense-utils.inc"
);
...
...
src/etc/inc/xmlreader.inc
deleted
100644 → 0
View file @
797b0e64
<?php
/* $Id$ */
/*
xmlparse.inc
functions to parse/dump configuration files in XML format
part of m0n0wall (http://m0n0.ch/wall)
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
/*
pfSense_MODULE: utils
*/
/* The following items will be treated as arrays in config.xml */
function
listtags
()
{
/*
* Please keep this list alpha sorted and no longer than 80 characters
* I know it's a pain, but it's a pain to find stuff too if it's not
*/
$ret
=
array
(
'acls'
,
'alias'
,
'aliasurl'
,
'allowedip'
,
'allowedhostname'
,
'authserver'
,
'bridged'
,
'build_port_path'
,
'ca'
,
'cacert'
,
'cert'
,
'crl'
,
'clone'
,
'config'
,
'container'
,
'columnitem'
,
'depends_on_package'
,
'disk'
,
'dnsserver'
,
'dnsupdate'
,
'domainoverrides'
,
'dyndns'
,
'element'
,
'encryption-algorithm-option'
,
'field'
,
'fieldname'
,
'gateway_item'
,
'gateway_group'
,
'gif'
,
'gre'
,
'group'
,
'hash-algorithm-option'
,
'hosts'
,
'member'
,
'ifgroupentry'
,
'igmpentry'
,
'interface_array'
,
'item'
,
'key'
,
'lagg'
,
'lbaction'
,
'lbpool'
,
'l7rules'
,
'lbprotocol'
,
'member'
,
'menu'
,
'tab'
,
'mobilekey'
,
'monitor_type'
,
'mount'
,
'npt'
,
'ntpserver'
,
'onetoone'
,
'openvpn-server'
,
'openvpn-client'
,
'openvpn-csc'
,
'option'
,
'package'
,
'passthrumac'
,
'phase1'
,
'phase2'
,
'ppp'
,
'pppoe'
,
'priv'
,
'proxyarpnet'
,
'pool'
,
'qinqentry'
,
'queue'
,
'pages'
,
'pipe'
,
'radnsserver'
,
'roll'
,
'route'
,
'row'
,
'rrddatafile'
,
'rule'
,
'schedule'
,
'service'
,
'servernat'
,
'servers'
,
'serversdisabled'
,
'staticmap'
,
'subqueue'
,
'timerange'
,
'tunnel'
,
'user'
,
'vip'
,
'virtual_server'
,
'vlan'
,
'winsserver'
,
'wolentry'
,
'widget'
);
return
array_flip
(
$ret
);
}
/* Package XML tags that should be treat as a list not as a traditional array */
function
listtags_pkg
()
{
$ret
=
array
(
'depends_on_package'
,
'onetoone'
,
'queue'
,
'rule'
,
'servernat'
,
'alias'
,
'additional_files_needed'
,
'tab'
,
'template'
,
'menu'
,
'rowhelperfield'
,
'service'
,
'step'
,
'package'
,
'columnitem'
,
'option'
,
'item'
,
'field'
,
'package'
,
'file'
);
return
array_flip
(
$ret
);
}
function
add_elements
(
&
$cfgarray
,
&
$parser
)
{
global
$listtags
;
while
(
$parser
->
read
())
{
switch
(
$parser
->
nodeType
)
{
case
XMLReader
::
WHITESPACE
:
case
XMLReader
::
SIGNIFICANT_WHITESPACE
:
break
;
case
XMLReader
::
ELEMENT
:
if
(
isset
(
$listtags
[
strtolower
(
$parser
->
name
)]))
{
$cfgref
=&
$cfgarray
[
$parser
->
name
][
count
(
$cfgarray
[
$parser
->
name
])];
if
(
!
$parser
->
isEmptyElement
)
{
add_elements
(
$cfgref
,
$parser
);
}
else
$cfgref
=
array
();
}
else
{
if
(
isset
(
$cfgarray
[
$parser
->
name
])
&&
(
!
is_array
(
$cfgarray
[
$parser
->
name
])
||
!
isset
(
$cfgarray
[
$parser
->
name
][
0
])))
{
$nodebkp
=
$cfgarray
[
$parser
->
name
];
$cfgarray
[
$parser
->
name
]
=
array
();
$cfgarray
[
$parser
->
name
][]
=
$nodebkp
;
$cfgref
=&
$cfgarray
[
$parser
->
name
][
0
];
unset
(
$nodebkp
);
}
else
$cfgref
=&
$cfgarray
[
$parser
->
name
];
if
(
$parser
->
isEmptyElement
)
{
if
(
is_array
(
$cfgref
))
$cfgref
[]
=
array
();
else
$cfgref
=
""
;
}
else
{
if
(
is_array
(
$cfgref
))
{
$cfgref
=&
$cfgarray
[
$parser
->
name
][
count
(
$cfgarray
[
$parser
->
name
])];
add_elements
(
$cfgref
,
$parser
);
}
else
add_elements
(
$cfgref
,
$parser
);
}
}
$i
=
0
;
while
(
$parser
->
moveToAttributeNo
(
$i
))
{
$cfgref
[
$parser
->
name
]
=
$parser
->
value
;
$i
++
;
}
break
;
case
XMLReader
::
TEXT
:
case
XMLReader
::
CDATA
:
$cfgarray
=
$parser
->
value
;
break
;
case
XMLReader
::
END_ELEMENT
:
return
;
break
;
default
:
break
;
}
}
}
function
parse_xml_config
(
$cffile
,
$rootobj
,
$isstring
=
"false"
)
{
global
$listtags
;
$listtags
=
listtags
();
if
(
isset
(
$GLOBALS
[
'custom_listtags'
]))
{
foreach
(
$GLOBALS
[
'custom_listtags'
]
as
$tag
)
{
$listtags
[
$tag
]
=
$tag
;
}
}
return
parse_xml_config_raw
(
$cffile
,
$rootobj
);
}
function
parse_xml_config_pkg
(
$cffile
,
$rootobj
,
$isstring
=
"false"
)
{
global
$listtags
;
$listtags
=
listtags_pkg
();
if
(
isset
(
$GLOBALS
[
'custom_listtags_pkg'
]))
{
foreach
(
$GLOBALS
[
'custom_listtags_pkg'
]
as
$tag
)
{
$listtags
[
$tag
]
=
$tag
;
}
}
return
parse_xml_config_raw
(
$cffile
,
$rootobj
,
$isstring
);
}
function
parse_xml_config_raw
(
$cffile
,
$rootobj
,
$isstring
=
"false"
)
{
global
$listtags
;
$parsedcfg
=
array
();
$par
=
new
XMLReader
();
if
(
$par
->
open
(
$cffile
,
"UTF-8"
,
LIBXML_NOERROR
|
LIBXML_NOWARNING
))
{
add_elements
(
$parsedcfg
,
$par
);
$par
->
close
();
}
else
log_error
(
sprintf
(
gettext
(
"Error returned while trying to parse %s"
),
$cffile
));
if
(
$rootobj
)
{
if
(
!
is_array
(
$rootobj
))
$rootobj
=
array
(
$rootobj
);
foreach
(
$rootobj
as
$rootobj_name
)
if
(
$parsedcfg
[
$rootobj_name
])
break
;
return
$parsedcfg
[
$rootobj_name
];
}
else
{
return
$parsedcfg
;
}
}
function
dump_xml_config_sub
(
&
$writer
,
$arr
)
{
global
$listtags
;
foreach
(
$arr
as
$ent
=>
$val
)
{
if
(
is_array
(
$val
))
{
/* is it just a list of multiple values? */
if
(
isset
(
$listtags
[
strtolower
(
$ent
)]))
{
foreach
(
$val
as
$cval
)
{
if
(
is_array
(
$cval
))
{
if
(
empty
(
$cval
))
$writer
->
writeElement
(
$ent
);
else
{
$writer
->
startElement
(
$ent
);
dump_xml_config_sub
(
$writer
,
$cval
);
$writer
->
endElement
();
}
}
else
{
if
(
$cval
===
false
)
continue
;
if
((
is_bool
(
$val
)
&&
(
$val
==
true
))
||
(
$val
===
""
))
$writer
->
writeElement
(
$ent
);
else
if
(
!
is_bool
(
$val
))
$writer
->
writeElement
(
$ent
,
$cval
);
}
}
}
else
if
(
empty
(
$val
))
{
$writer
->
writeElement
(
$ent
);
}
else
{
/* it's an array */
$writer
->
startElement
(
$ent
);
dump_xml_config_sub
(
$writer
,
$val
);
$writer
->
endElement
();
}
}
else
{
if
((
is_bool
(
$val
)
&&
(
$val
==
true
))
||
(
$val
===
""
))
$writer
->
writeElement
(
$ent
);
else
if
(
!
is_bool
(
$val
))
$writer
->
writeElement
(
$ent
,
$val
);
}
}
}
function
dump_xml_config
(
$arr
,
$rootobj
)
{
global
$listtags
;
$listtags
=
listtags
();
if
(
isset
(
$GLOBALS
[
'custom_listtags'
]))
{
foreach
(
$GLOBALS
[
'custom_listtags'
]
as
$tag
)
{
$listtags
[
$tag
]
=
$tag
;
}
}
return
dump_xml_config_raw
(
$arr
,
$rootobj
);
}
function
dump_xml_config_pkg
(
$arr
,
$rootobj
)
{
global
$listtags
;
$listtags
=
listtags_pkg
();
if
(
isset
(
$GLOBALS
[
'custom_listtags_pkg'
]))
{
foreach
(
$GLOBALS
[
'custom_listtags_pkg'
]
as
$tag
)
{
$listtags
[
$tag
]
=
$tag
;
}
}
return
dump_xml_config_raw
(
$arr
,
$rootobj
);
}
function
dump_xml_config_raw
(
$arr
,
$rootobj
)
{
$writer
=
new
XMLWriter
();
$writer
->
openMemory
();
$writer
->
setIndent
(
true
);
$writer
->
setIndentString
(
"
\t
"
);
$writer
->
startDocument
(
"1.0"
,
"UTF-8"
);
$writer
->
startElement
(
$rootobj
);
dump_xml_config_sub
(
$writer
,
$arr
);
$writer
->
endElement
();
$writer
->
endDocument
();
$xmlconfig
=
$writer
->
outputMemory
(
true
);
return
$xmlconfig
;
}
?>
src/etc/rc.php_ini_setup
View file @
58899e55
...
@@ -51,7 +51,7 @@ fi
...
@@ -51,7 +51,7 @@ fi
PHPMODULES
=
"standard"
PHPMODULES
=
"standard"
# Config read/write
# Config read/write
PHPMODULES
=
"
$PHPMODULES
xml libxml dom"
PHPMODULES
=
"
$PHPMODULES
xml libxml dom"
PHPMODULES
=
"
$PHPMODULES
simplexml
xmlreader xmlwriter
"
PHPMODULES
=
"
$PHPMODULES
simplexml"
# Downloading via HTTP/FTP (pkg mgr, etc)
# Downloading via HTTP/FTP (pkg mgr, etc)
PHPMODULES
=
"
$PHPMODULES
curl date"
PHPMODULES
=
"
$PHPMODULES
curl date"
# Internationalization
# Internationalization
...
...
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