Search in sources :

Example 81 with ConfigurationException

use of javax.naming.ConfigurationException in project CloudStack-archive by CloudStack-extras.

the class LibvirtComputingResource method execute.

protected CreatePrivateTemplateAnswer execute(final CreatePrivateTemplateFromSnapshotCommand cmd) {
    String templateFolder = cmd.getAccountId() + File.separator + cmd.getNewTemplateId();
    String templateInstallFolder = "template/tmpl/" + templateFolder;
    String tmplName = UUID.randomUUID().toString();
    String tmplFileName = tmplName + ".qcow2";
    KVMStoragePool secondaryPool = null;
    KVMStoragePool snapshotPool = null;
    try {
        String snapshotPath = cmd.getSnapshotUuid();
        int index = snapshotPath.lastIndexOf("/");
        snapshotPath = snapshotPath.substring(0, index);
        snapshotPool = _storagePoolMgr.getStoragePoolByURI(cmd.getSecondaryStorageUrl() + snapshotPath);
        KVMPhysicalDisk snapshot = snapshotPool.getPhysicalDisk(cmd.getSnapshotName());
        secondaryPool = _storagePoolMgr.getStoragePoolByURI(cmd.getSecondaryStorageUrl());
        String templatePath = secondaryPool.getLocalPath() + File.separator + templateInstallFolder;
        _storage.mkdirs(templatePath);
        String tmplPath = templateInstallFolder + File.separator + tmplFileName;
        Script command = new Script(_createTmplPath, _cmdsTimeout, s_logger);
        command.add("-t", templatePath);
        command.add("-n", tmplFileName);
        command.add("-f", snapshot.getPath());
        command.execute();
        Map<String, Object> params = new HashMap<String, Object>();
        params.put(StorageLayer.InstanceConfigKey, _storage);
        Processor qcow2Processor = new QCOW2Processor();
        qcow2Processor.configure("QCOW2 Processor", params);
        FormatInfo info = qcow2Processor.process(templatePath, null, tmplName);
        TemplateLocation loc = new TemplateLocation(_storage, templatePath);
        loc.create(1, true, tmplName);
        loc.addFormat(info);
        loc.save();
        return new CreatePrivateTemplateAnswer(cmd, true, "", tmplPath, info.virtualSize, info.size, tmplName, info.format);
    } catch (ConfigurationException e) {
        return new CreatePrivateTemplateAnswer(cmd, false, e.getMessage());
    } catch (InternalErrorException e) {
        return new CreatePrivateTemplateAnswer(cmd, false, e.getMessage());
    } catch (IOException e) {
        return new CreatePrivateTemplateAnswer(cmd, false, e.getMessage());
    } catch (CloudRuntimeException e) {
        return new CreatePrivateTemplateAnswer(cmd, false, e.getMessage());
    } finally {
        if (secondaryPool != null) {
            secondaryPool.delete();
        }
        if (snapshotPool != null) {
            snapshotPool.delete();
        }
    }
}
Also used : Script(com.cloud.utils.script.Script) QCOW2Processor(com.cloud.storage.template.QCOW2Processor) Processor(com.cloud.storage.template.Processor) ConcurrentHashMap(java.util.concurrent.ConcurrentHashMap) HashMap(java.util.HashMap) KVMPhysicalDisk(com.cloud.agent.storage.KVMPhysicalDisk) InternalErrorException(com.cloud.exception.InternalErrorException) IOException(java.io.IOException) QCOW2Processor(com.cloud.storage.template.QCOW2Processor) KVMStoragePool(com.cloud.agent.storage.KVMStoragePool) ConfigurationException(javax.naming.ConfigurationException) TemplateLocation(com.cloud.storage.template.TemplateLocation) CloudRuntimeException(com.cloud.utils.exception.CloudRuntimeException) CreatePrivateTemplateAnswer(com.cloud.agent.api.storage.CreatePrivateTemplateAnswer) FormatInfo(com.cloud.storage.template.Processor.FormatInfo)

Example 82 with ConfigurationException

use of javax.naming.ConfigurationException in project CloudStack-archive by CloudStack-extras.

the class MockAgentManagerImpl method createServerResources.

@Override
@DB
public Map<AgentResourceBase, Map<String, String>> createServerResources(Map<String, Object> params) {
    Map<String, String> args = new HashMap<String, String>();
    Map<AgentResourceBase, Map<String, String>> newResources = new HashMap<AgentResourceBase, Map<String, String>>();
    AgentResourceBase agentResource;
    long cpuCore = Long.parseLong((String) params.get("cpucore"));
    long cpuSpeed = Long.parseLong((String) params.get("cpuspeed"));
    long memory = Long.parseLong((String) params.get("memory"));
    long localStorageSize = Long.parseLong((String) params.get("localstorage"));
    synchronized (this) {
        long dataCenterId = Long.parseLong((String) params.get("zone"));
        long podId = Long.parseLong((String) params.get("pod"));
        long clusterId = Long.parseLong((String) params.get("cluster"));
        long cidrSize = getPodCidr(podId, dataCenterId).second();
        int agentId = getNextAgentId(cidrSize);
        String ipAddress = getIpAddress(agentId, dataCenterId, podId);
        String macAddress = getMacAddress(dataCenterId, podId, clusterId, agentId);
        MockHostVO mockHost = new MockHostVO();
        mockHost.setDataCenterId(dataCenterId);
        mockHost.setPodId(podId);
        mockHost.setClusterId(clusterId);
        mockHost.setCapabilities("hvm");
        mockHost.setCpuCount(cpuCore);
        mockHost.setCpuSpeed(cpuSpeed);
        mockHost.setMemorySize(memory);
        String guid = UUID.randomUUID().toString();
        mockHost.setGuid(guid);
        mockHost.setName("SimulatedAgent." + guid);
        mockHost.setPrivateIpAddress(ipAddress);
        mockHost.setPublicIpAddress(ipAddress);
        mockHost.setStorageIpAddress(ipAddress);
        mockHost.setPrivateMacAddress(macAddress);
        mockHost.setPublicMacAddress(macAddress);
        mockHost.setStorageMacAddress(macAddress);
        mockHost.setVersion(this.getClass().getPackage().getImplementationVersion());
        mockHost.setResource("com.cloud.agent.AgentRoutingResource");
        mockHost = _mockHostDao.persist(mockHost);
        _storageMgr.getLocalStorage(guid, localStorageSize);
        agentResource = new AgentRoutingResource();
        if (agentResource != null) {
            try {
                params.put("guid", mockHost.getGuid());
                agentResource.start();
                agentResource.configure(mockHost.getName(), params);
                newResources.put(agentResource, args);
            } catch (ConfigurationException e) {
                s_logger.error("error while configuring server resource" + e.getMessage());
            }
        }
    }
    return newResources;
}
Also used : AgentResourceBase(com.cloud.resource.AgentResourceBase) HashMap(java.util.HashMap) ConcurrentHashMap(java.util.concurrent.ConcurrentHashMap) ConfigurationException(javax.naming.ConfigurationException) AgentRoutingResource(com.cloud.resource.AgentRoutingResource) MockHostVO(com.cloud.simulator.MockHostVO) HashMap(java.util.HashMap) Map(java.util.Map) ConcurrentHashMap(java.util.concurrent.ConcurrentHashMap) DB(com.cloud.utils.db.DB)

Example 83 with ConfigurationException

use of javax.naming.ConfigurationException in project CloudStack-archive by CloudStack-extras.

the class CloudZonesComputingResource method configure.

@Override
public boolean configure(String name, Map<String, Object> params) throws ConfigurationException {
    boolean success = super.configure(name, params);
    if (!success) {
        return false;
    }
    _parent = (String) params.get("mount.path");
    try {
        _dhcpTimeout = Long.parseLong((String) params.get("dhcp.timeout"));
    } catch (Exception e) {
        _dhcpTimeout = 1200000;
    }
    _hostIp = (String) params.get("host.ip");
    _hostMacAddress = (String) params.get("host.mac.address");
    try {
        Connect conn;
        conn = LibvirtConnection.getConnection();
        setupDhcpManager(conn, _guestBridgeName);
    } catch (LibvirtException e) {
        s_logger.debug("Failed to get libvirt connection:" + e.toString());
        return false;
    }
    _dhcpSnooper.configure(name, params);
    _vmDataServer.configure(name, params);
    return true;
}
Also used : LibvirtException(org.libvirt.LibvirtException) Connect(org.libvirt.Connect) ConfigurationException(javax.naming.ConfigurationException) LibvirtException(org.libvirt.LibvirtException)

Example 84 with ConfigurationException

use of javax.naming.ConfigurationException in project CloudStack-archive by CloudStack-extras.

the class AgentShell method launchAgentFromClassInfo.

private void launchAgentFromClassInfo(String resourceClassNames) throws ConfigurationException {
    String[] names = resourceClassNames.split("\\|");
    for (String name : names) {
        Class<?> impl;
        try {
            impl = Class.forName(name);
            final Constructor<?> constructor = impl.getDeclaredConstructor();
            constructor.setAccessible(true);
            ServerResource resource = (ServerResource) constructor.newInstance();
            launchAgent(getNextAgentId(), resource);
        } catch (final ClassNotFoundException e) {
            throw new ConfigurationException("Resource class not found: " + name + " due to: " + e.toString());
        } catch (final SecurityException e) {
            throw new ConfigurationException("Security excetion when loading resource: " + name + " due to: " + e.toString());
        } catch (final NoSuchMethodException e) {
            throw new ConfigurationException("Method not found excetion when loading resource: " + name + " due to: " + e.toString());
        } catch (final IllegalArgumentException e) {
            throw new ConfigurationException("Illegal argument excetion when loading resource: " + name + " due to: " + e.toString());
        } catch (final InstantiationException e) {
            throw new ConfigurationException("Instantiation excetion when loading resource: " + name + " due to: " + e.toString());
        } catch (final IllegalAccessException e) {
            throw new ConfigurationException("Illegal access exception when loading resource: " + name + " due to: " + e.toString());
        } catch (final InvocationTargetException e) {
            throw new ConfigurationException("Invocation target exception when loading resource: " + name + " due to: " + e.toString());
        }
    }
}
Also used : ServerResource(com.cloud.resource.ServerResource) InvocationTargetException(java.lang.reflect.InvocationTargetException) ConfigurationException(javax.naming.ConfigurationException)

Example 85 with ConfigurationException

use of javax.naming.ConfigurationException in project CloudStack-archive by CloudStack-extras.

the class LibvirtComputingResource method configure.

@Override
public boolean configure(String name, Map<String, Object> params) throws ConfigurationException {
    boolean success = super.configure(name, params);
    if (!success) {
        return false;
    }
    try {
        Class<?> clazz = Class.forName("com.cloud.storage.JavaStorageLayer");
        _storage = (StorageLayer) ComponentLocator.inject(clazz);
        _storage.configure("StorageLayer", params);
    } catch (ClassNotFoundException e) {
        throw new ConfigurationException("Unable to find class " + "com.cloud.storage.JavaStorageLayer");
    }
    _virtRouterResource = new VirtualRoutingResource();
    // Set the domr scripts directory
    params.put("domr.scripts.dir", "scripts/network/domr/kvm");
    success = _virtRouterResource.configure(name, params);
    String kvmScriptsDir = (String) params.get("kvm.scripts.dir");
    if (kvmScriptsDir == null) {
        kvmScriptsDir = "scripts/vm/hypervisor/kvm";
    }
    String networkScriptsDir = (String) params.get("network.scripts.dir");
    if (networkScriptsDir == null) {
        networkScriptsDir = getDefaultNetworkScriptsDir();
    }
    String storageScriptsDir = (String) params.get("storage.scripts.dir");
    if (storageScriptsDir == null) {
        storageScriptsDir = getDefaultStorageScriptsDir();
    }
    if (!success) {
        return false;
    }
    _host = (String) params.get("host");
    if (_host == null) {
        _host = "localhost";
    }
    _dcId = (String) params.get("zone");
    if (_dcId == null) {
        _dcId = "default";
    }
    _pod = (String) params.get("pod");
    if (_pod == null) {
        _pod = "default";
    }
    _clusterId = (String) params.get("cluster");
    _modifyVlanPath = Script.findScript(networkScriptsDir, "modifyvlan.sh");
    if (_modifyVlanPath == null) {
        throw new ConfigurationException("Unable to find modifyvlan.sh");
    }
    _versionstringpath = Script.findScript(kvmScriptsDir, "versions.sh");
    if (_versionstringpath == null) {
        throw new ConfigurationException("Unable to find versions.sh");
    }
    _patchdomrPath = Script.findScript(kvmScriptsDir + "/patch/", "rundomrpre.sh");
    if (_patchdomrPath == null) {
        throw new ConfigurationException("Unable to find rundomrpre.sh");
    }
    _heartBeatPath = Script.findScript(kvmScriptsDir, "kvmheartbeat.sh");
    if (_heartBeatPath == null) {
        throw new ConfigurationException("Unable to find kvmheartbeat.sh");
    }
    _createvmPath = Script.findScript(storageScriptsDir, "createvm.sh");
    if (_createvmPath == null) {
        throw new ConfigurationException("Unable to find the createvm.sh");
    }
    _manageSnapshotPath = Script.findScript(storageScriptsDir, "managesnapshot.sh");
    if (_manageSnapshotPath == null) {
        throw new ConfigurationException("Unable to find the managesnapshot.sh");
    }
    _createTmplPath = Script.findScript(storageScriptsDir, "createtmplt.sh");
    if (_createTmplPath == null) {
        throw new ConfigurationException("Unable to find the createtmplt.sh");
    }
    _securityGroupPath = Script.findScript(networkScriptsDir, "security_group.py");
    if (_securityGroupPath == null) {
        throw new ConfigurationException("Unable to find the security_group.py");
    }
    _networkUsagePath = Script.findScript("scripts/network/domr/", "networkUsage.sh");
    if (_networkUsagePath == null) {
        throw new ConfigurationException("Unable to find the networkUsage.sh");
    }
    String value = (String) params.get("developer");
    boolean isDeveloper = Boolean.parseBoolean(value);
    if (isDeveloper) {
        params.putAll(getDeveloperProperties());
    }
    _pool = (String) params.get("pool");
    if (_pool == null) {
        _pool = "/root";
    }
    String instance = (String) params.get("instance");
    _hypervisorType = (String) params.get("hypervisor.type");
    if (_hypervisorType == null) {
        _hypervisorType = "kvm";
    }
    _hypervisorURI = (String) params.get("hypervisor.uri");
    if (_hypervisorURI == null) {
        _hypervisorURI = "qemu:///system";
    }
    String startMac = (String) params.get("private.macaddr.start");
    if (startMac == null) {
        startMac = "00:16:3e:77:e2:a0";
    }
    String startIp = (String) params.get("private.ipaddr.start");
    if (startIp == null) {
        startIp = "192.168.166.128";
    }
    _pingTestPath = Script.findScript(kvmScriptsDir, "pingtest.sh");
    if (_pingTestPath == null) {
        throw new ConfigurationException("Unable to find the pingtest.sh");
    }
    _linkLocalBridgeName = (String) params.get("private.bridge.name");
    if (_linkLocalBridgeName == null) {
        if (isDeveloper) {
            _linkLocalBridgeName = "cloud-" + instance + "-0";
        } else {
            _linkLocalBridgeName = "cloud0";
        }
    }
    _publicBridgeName = (String) params.get("public.network.device");
    if (_publicBridgeName == null) {
        _publicBridgeName = "cloudbr0";
    }
    _privBridgeName = (String) params.get("private.network.device");
    if (_privBridgeName == null) {
        _privBridgeName = "cloudbr1";
    }
    _guestBridgeName = (String) params.get("guest.network.device");
    if (_guestBridgeName == null) {
        _guestBridgeName = _privBridgeName;
    }
    _privNwName = (String) params.get("private.network.name");
    if (_privNwName == null) {
        if (isDeveloper) {
            _privNwName = "cloud-" + instance + "-private";
        } else {
            _privNwName = "cloud-private";
        }
    }
    _localStoragePath = (String) params.get("local.storage.path");
    if (_localStoragePath == null) {
        _localStoragePath = "/var/lib/libvirt/images/";
    }
    _localStorageUUID = (String) params.get("local.storage.uuid");
    if (_localStorageUUID == null) {
        _localStorageUUID = UUID.randomUUID().toString();
        params.put("local.storage.uuid", _localStorageUUID);
    }
    value = (String) params.get("scripts.timeout");
    _timeout = NumbersUtil.parseInt(value, 30 * 60) * 1000;
    value = (String) params.get("stop.script.timeout");
    _stopTimeout = NumbersUtil.parseInt(value, 120) * 1000;
    value = (String) params.get("cmds.timeout");
    _cmdsTimeout = NumbersUtil.parseInt(value, 7200) * 1000;
    value = (String) params.get("host.reserved.mem.mb");
    _dom0MinMem = NumbersUtil.parseInt(value, 0) * 1024 * 1024;
    value = (String) params.get("debug.mode");
    LibvirtConnection.initialize(_hypervisorURI);
    Connect conn = null;
    try {
        conn = LibvirtConnection.getConnection();
    } catch (LibvirtException e) {
        throw new CloudRuntimeException(e.getMessage());
    }
    /* Does node support HVM guest? If not, exit */
    if (!IsHVMEnabled(conn)) {
        throw new ConfigurationException("NO HVM support on this machine, pls make sure: " + "1. VT/SVM is supported by your CPU, or is enabled in BIOS. " + "2. kvm modules is installed");
    }
    _hypervisorPath = getHypervisorPath(conn);
    try {
        _hvVersion = conn.getVersion();
        _hvVersion = (_hvVersion % 1000000) / 1000;
    } catch (LibvirtException e) {
    }
    String[] info = NetUtils.getNetworkParams(_privateNic);
    _monitor = new KVMHAMonitor(null, info[0], _heartBeatPath);
    Thread ha = new Thread(_monitor);
    ha.start();
    _storagePoolMgr = new KVMStoragePoolManager(_storage, _monitor);
    _sysvmISOPath = (String) params.get("systemvm.iso.path");
    if (_sysvmISOPath == null) {
        String[] isoPaths = { "/usr/lib64/cloud/agent/vms/systemvm.iso", "/usr/lib/cloud/agent/vms/systemvm.iso" };
        for (String isoPath : isoPaths) {
            if (_storage.exists(isoPath)) {
                _sysvmISOPath = isoPath;
                break;
            }
        }
        if (_sysvmISOPath == null) {
            s_logger.debug("Can't find system vm ISO");
        }
    }
    try {
        createControlNetwork(conn);
    } catch (LibvirtException e) {
        throw new ConfigurationException(e.getMessage());
    }
    _pifs = getPifs();
    if (_pifs.first() == null) {
        s_logger.debug("Failed to get private nic name");
        throw new ConfigurationException("Failed to get private nic name");
    }
    if (_pifs.second() == null) {
        s_logger.debug("Failed to get public nic name");
        throw new ConfigurationException("Failed to get public nic name");
    }
    s_logger.debug("Found pif: " + _pifs.first() + " on " + _privBridgeName + ", pif: " + _pifs.second() + " on " + _publicBridgeName);
    _can_bridge_firewall = can_bridge_firewall(_pifs.second());
    _localGateway = Script.runSimpleBashScript("ip route |grep default|awk '{print $3}'");
    if (_localGateway == null) {
        s_logger.debug("Failed to found the local gateway");
    }
    _mountPoint = (String) params.get("mount.path");
    if (_mountPoint == null) {
        _mountPoint = "/mnt";
    }
    value = (String) params.get("vm.migrate.speed");
    _migrateSpeed = NumbersUtil.parseInt(value, -1);
    if (_migrateSpeed == -1) {
        //get guest network device speed
        _migrateSpeed = 0;
        String speed = Script.runSimpleBashScript("ethtool " + _pifs.second() + " |grep Speed | cut -d \\  -f 2");
        if (speed != null) {
            String[] tokens = speed.split("M");
            if (tokens.length == 2) {
                try {
                    _migrateSpeed = Integer.parseInt(tokens[0]);
                } catch (Exception e) {
                }
                s_logger.debug("device " + _pifs.second() + " has speed: " + String.valueOf(_migrateSpeed));
            }
        }
        params.put("vm.migrate.speed", String.valueOf(_migrateSpeed));
    }
    saveProperties(params);
    return true;
}
Also used : KVMStoragePoolManager(com.cloud.agent.storage.KVMStoragePoolManager) LibvirtException(org.libvirt.LibvirtException) Connect(org.libvirt.Connect) VirtualRoutingResource(com.cloud.agent.resource.virtualnetwork.VirtualRoutingResource) CloudRuntimeException(com.cloud.utils.exception.CloudRuntimeException) IOException(java.io.IOException) ExecutionException(java.util.concurrent.ExecutionException) URISyntaxException(java.net.URISyntaxException) LibvirtException(org.libvirt.LibvirtException) FileNotFoundException(java.io.FileNotFoundException) InternalErrorException(com.cloud.exception.InternalErrorException) ConfigurationException(javax.naming.ConfigurationException) ConfigurationException(javax.naming.ConfigurationException) CloudRuntimeException(com.cloud.utils.exception.CloudRuntimeException)

Aggregations

ConfigurationException (javax.naming.ConfigurationException)168 CloudRuntimeException (com.cloud.utils.exception.CloudRuntimeException)57 IOException (java.io.IOException)44 HashMap (java.util.HashMap)39 File (java.io.File)23 Map (java.util.Map)21 InternalErrorException (com.cloud.exception.InternalErrorException)19 Properties (java.util.Properties)19 StorageLayer (com.cloud.storage.StorageLayer)18 Processor (com.cloud.storage.template.Processor)17 ParserConfigurationException (javax.xml.parsers.ParserConfigurationException)17 Answer (com.cloud.agent.api.Answer)16 ServerResource (com.cloud.resource.ServerResource)16 TemplateLocation (com.cloud.storage.template.TemplateLocation)16 Script (com.cloud.utils.script.Script)16 FormatInfo (com.cloud.storage.template.Processor.FormatInfo)14 FileNotFoundException (java.io.FileNotFoundException)14 InvalidParameterValueException (com.cloud.exception.InvalidParameterValueException)13 Host (com.cloud.host.Host)11 TransactionStatus (com.cloud.utils.db.TransactionStatus)11