mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 07:22:57 +02:00
our current experimental Neutrino branch
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@27 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: bc5bd4154e
Author: mrcolor <mrcolor@e54a6e83-5905-42d5-8d5c-058d10e6a962>
Date: 2009-12-08 (Tue, 08 Dec 2009)
------------------
This commit was generated by Migit
This commit is contained in:
373
lib/libnet/network_interfaces.cpp
Normal file
373
lib/libnet/network_interfaces.cpp
Normal file
@@ -0,0 +1,373 @@
|
||||
/*
|
||||
* $Header: /cvs/tuxbox/apps/misc/libs/libnet/network_interfaces.cpp,v 1.6 2003/03/20 15:32:52 thegoodguy Exp $
|
||||
*
|
||||
* (C) 2003 by thegoodguy <thegoodguy@berlios.de>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <fstream>
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
|
||||
/*
|
||||
* Known bugs:
|
||||
* -----------
|
||||
*
|
||||
* - extension of lines across multiple lines using \ is not supported
|
||||
*
|
||||
*/
|
||||
|
||||
bool read_file(const std::string filename, std::list<std::string> &line)
|
||||
{
|
||||
std::string s;
|
||||
std::ifstream in(filename.c_str());
|
||||
|
||||
line.clear();
|
||||
|
||||
if (!in.is_open())
|
||||
return false;
|
||||
|
||||
while (getline(in, s))
|
||||
line.push_back(s);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool write_file(const std::string filename, const std::list<std::string> line)
|
||||
{
|
||||
std::ofstream out(filename.c_str());
|
||||
|
||||
if (!out.is_open())
|
||||
return false;
|
||||
|
||||
for (std::list<std::string>::const_iterator it = line.begin(); it != line.end(); it++)
|
||||
out << (*it) << std::endl;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
std::list<std::string>::iterator add_attributes(const std::map<std::string, std::string> attribute, std::list<std::string> &line, std::list<std::string>::iterator here)
|
||||
{
|
||||
for (std::map<std::string, std::string>::const_iterator it = attribute.begin(); it != attribute.end(); it++)
|
||||
{
|
||||
std::ostringstream out;
|
||||
out << '\t' << (it -> first) << ' ' << (it -> second);
|
||||
line.insert(here, out.str());
|
||||
}
|
||||
return here;
|
||||
}
|
||||
|
||||
std::string remove_interface_from_line(const std::string interface, const std::string line)
|
||||
{
|
||||
std::string s;
|
||||
std::istringstream in(line.c_str());
|
||||
std::ostringstream out;
|
||||
bool contains_at_least_one_interface = false;
|
||||
|
||||
if (in >> s)
|
||||
{
|
||||
out << s; /* auto */
|
||||
|
||||
while (in >> s)
|
||||
{
|
||||
if (s != interface)
|
||||
{
|
||||
out << ' ' << s;
|
||||
contains_at_least_one_interface = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return (contains_at_least_one_interface ? out.str() : "");
|
||||
}
|
||||
|
||||
bool write_interface(const std::string filename, const std::string name, const bool automatic_start, const std::string family, const std::string method, const std::map<std::string, std::string> attribute)
|
||||
{
|
||||
std::string s;
|
||||
std::list<std::string> line;
|
||||
bool found = false;
|
||||
|
||||
read_file(filename, line); /* ignore return value */
|
||||
|
||||
for (std::list<std::string>::iterator it = line.begin(); it != line.end(); )
|
||||
{
|
||||
{
|
||||
std::istringstream in((*it).c_str());
|
||||
|
||||
if (!(in >> s))
|
||||
{
|
||||
it++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (s != std::string("iface"))
|
||||
{
|
||||
if (s == std::string("auto"))
|
||||
{
|
||||
bool advance = true;
|
||||
while (in >> s)
|
||||
{
|
||||
if (s == std::string(name))
|
||||
{
|
||||
*it = remove_interface_from_line(name, *it);
|
||||
if ((*it).empty())
|
||||
{
|
||||
it = line.erase(it); /* erase advances it */
|
||||
advance = false;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (advance)
|
||||
it++;
|
||||
}
|
||||
else
|
||||
it++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!(in >> s))
|
||||
{
|
||||
it++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (s != std::string(name))
|
||||
{
|
||||
it++;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
found = true;
|
||||
|
||||
/* replace line */
|
||||
std::ostringstream out;
|
||||
out << "iface " << name << ' ' << family << ' ' << method;
|
||||
(*it) = out.str();
|
||||
|
||||
if (automatic_start)
|
||||
line.insert(it, "auto " + name);
|
||||
|
||||
/* add attributes */
|
||||
it++;
|
||||
it = add_attributes(attribute, line, it);
|
||||
|
||||
/* remove current attributes */
|
||||
while (it != line.end())
|
||||
{
|
||||
std::istringstream in((*it).c_str());
|
||||
|
||||
if (!(in >> s)) /* retain empty lines */
|
||||
{
|
||||
it++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (s[0] == '#') /* retain comments */
|
||||
{
|
||||
it++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (s == std::string("iface"))
|
||||
break;
|
||||
|
||||
if (s == std::string("auto"))
|
||||
break;
|
||||
|
||||
if (s == std::string("mapping"))
|
||||
break;
|
||||
|
||||
it = line.erase(it);
|
||||
}
|
||||
}
|
||||
|
||||
if (!found)
|
||||
{
|
||||
std::ostringstream out;
|
||||
|
||||
if (automatic_start)
|
||||
line.push_back("auto " + name);
|
||||
|
||||
out << "iface " << name << ' ' << family << ' ' << method;
|
||||
line.push_back(out.str());
|
||||
add_attributes(attribute, line, line.end());
|
||||
}
|
||||
|
||||
return write_file(filename, line);
|
||||
}
|
||||
|
||||
bool read_interface(const std::string filename, const std::string name, bool &automatic_start, std::string &family, std::string &method, std::map<std::string, std::string> &attribute)
|
||||
{
|
||||
std::string s;
|
||||
std::string t;
|
||||
std::ifstream in(filename.c_str());
|
||||
bool advance = true;
|
||||
|
||||
automatic_start = false;
|
||||
attribute.clear();
|
||||
|
||||
if (!in.is_open())
|
||||
return false;
|
||||
|
||||
while (true)
|
||||
{
|
||||
if (advance)
|
||||
{
|
||||
if (!getline(in, s))
|
||||
break;
|
||||
}
|
||||
else
|
||||
advance = true;
|
||||
|
||||
{
|
||||
std::istringstream in(s.c_str());
|
||||
|
||||
if (!(in >> s))
|
||||
continue;
|
||||
|
||||
if (s != std::string("iface"))
|
||||
{
|
||||
if (s == std::string("auto"))
|
||||
{
|
||||
while (in >> s)
|
||||
{
|
||||
if (s == std::string(name))
|
||||
{
|
||||
automatic_start = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!(in >> s))
|
||||
continue;
|
||||
|
||||
if (s != std::string(name))
|
||||
continue;
|
||||
|
||||
if (!(in >> s))
|
||||
continue;
|
||||
|
||||
if (!(in >> t))
|
||||
continue;
|
||||
|
||||
family = s;
|
||||
method = t;
|
||||
}
|
||||
|
||||
while (true)
|
||||
{
|
||||
if (!getline(in, s))
|
||||
return true;
|
||||
|
||||
std::istringstream in(s.c_str());
|
||||
|
||||
if (!(in >> t)) /* ignore empty lines */
|
||||
continue;
|
||||
|
||||
if (t[0] == '#') /* ignore comments */
|
||||
continue;
|
||||
|
||||
if (t == std::string("iface"))
|
||||
break;
|
||||
|
||||
if (t == std::string("auto"))
|
||||
break;
|
||||
|
||||
if (t == std::string("mapping"))
|
||||
break;
|
||||
|
||||
if (!(in >> s))
|
||||
continue;
|
||||
|
||||
attribute[t] = s;
|
||||
}
|
||||
advance = false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool getInetAttributes(const std::string name, bool &automatic_start, std::string &address, std::string &netmask, std::string &broadcast, std::string &gateway)
|
||||
{
|
||||
std::string family;
|
||||
std::string method;
|
||||
std::map<std::string, std::string> attribute;
|
||||
|
||||
if (!read_interface("/etc/network/interfaces", name, automatic_start, family, method, attribute))
|
||||
return false;
|
||||
|
||||
if (family != "inet")
|
||||
return false;
|
||||
|
||||
if (method != "static")
|
||||
return false;
|
||||
|
||||
address = "";
|
||||
netmask = "";
|
||||
broadcast = "";
|
||||
gateway = "";
|
||||
|
||||
for (std::map<std::string, std::string>::const_iterator it = attribute.begin(); it != attribute.end(); it++)
|
||||
{
|
||||
if ((*it).first == "address")
|
||||
address = (*it).second;
|
||||
if ((*it).first == "netmask")
|
||||
netmask = (*it).second;
|
||||
if ((*it).first == "broadcast")
|
||||
broadcast = (*it).second;
|
||||
if ((*it).first == "gateway")
|
||||
gateway = (*it).second;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool addLoopbackDevice(const std::string name, const bool automatic_start)
|
||||
{
|
||||
std::map<std::string, std::string> attribute;
|
||||
|
||||
return write_interface("/etc/network/interfaces", name, automatic_start, "inet", "loopback", attribute);
|
||||
}
|
||||
|
||||
bool setStaticAttributes(const std::string name, const bool automatic_start, const std::string address, const std::string netmask, const std::string broadcast, const std::string gateway)
|
||||
{
|
||||
std::map<std::string, std::string> attribute;
|
||||
|
||||
attribute["address"] = address;
|
||||
attribute["netmask"] = netmask;
|
||||
|
||||
if (!broadcast.empty())
|
||||
attribute["broadcast"] = broadcast;
|
||||
|
||||
if (!gateway.empty())
|
||||
attribute["gateway"] = gateway;
|
||||
|
||||
return write_interface("/etc/network/interfaces", name, automatic_start, "inet", "static", attribute);
|
||||
}
|
||||
|
||||
bool setDhcpAttributes(const std::string name, const bool automatic_start)
|
||||
{
|
||||
std::map<std::string, std::string> attribute;
|
||||
|
||||
return write_interface("/etc/network/interfaces", name, automatic_start, "inet", "dhcp", attribute);
|
||||
}
|
Reference in New Issue
Block a user