blob: f8e2b551bffe92f7b102e86d4cabc5e64e5f5977 [file] [log] [blame]
// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/ethernet.h"
#include <time.h>
#include <stdio.h>
#include <netinet/ether.h>
#include <linux/if.h> // Needs definitions from netinet/ether.h
#include <string>
#include <base/logging.h>
#include "shill/control_interface.h"
#include "shill/device.h"
#include "shill/device_info.h"
#include "shill/ethernet_service.h"
#include "shill/event_dispatcher.h"
#include "shill/manager.h"
#include "shill/profile.h"
#include "shill/rtnl_handler.h"
using std::string;
namespace shill {
Ethernet::Ethernet(ControlInterface *control_interface,
EventDispatcher *dispatcher,
Manager *manager,
const string &link_name,
const std::string &address,
int interface_index)
: Device(control_interface,
dispatcher,
manager,
link_name,
address,
interface_index),
service_registered_(false),
link_up_(false) {
VLOG(2) << "Ethernet device " << link_name << " initialized.";
}
Ethernet::~Ethernet() {
Stop();
}
void Ethernet::Start() {
service_ = new EthernetService(control_interface(),
dispatcher(),
manager(),
this);
Device::Start();
RTNLHandler::GetInstance()->SetInterfaceFlags(interface_index(), IFF_UP,
IFF_UP);
}
void Ethernet::Stop() {
manager()->DeregisterService(service_);
service_ = NULL;
Device::Stop();
}
bool Ethernet::TechnologyIs(const Technology::Identifier type) const {
return type == Technology::kEthernet;
}
void Ethernet::LinkEvent(unsigned int flags, unsigned int change) {
Device::LinkEvent(flags, change);
if ((flags & IFF_LOWER_UP) != 0 && !link_up_) {
LOG(INFO) << link_name() << " is up; should start L3!";
link_up_ = true;
manager()->RegisterService(service_);
if (service_->auto_connect()) {
if (AcquireDHCPConfig()) {
SelectService(service_);
SetServiceState(Service::kStateConfiguring);
} else {
LOG(ERROR) << "Unable to acquire DHCP config.";
}
}
} else if ((flags & IFF_LOWER_UP) == 0 && link_up_) {
link_up_ = false;
manager()->DeregisterService(service_);
SelectService(NULL);
DestroyIPConfig();
}
}
} // namespace shill