package pl.edu.mimuw.cloudatlas.agent.modules; import java.nio.file.Path; import java.rmi.RemoteException; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import java.security.PublicKey; import java.util.*; import java.util.AbstractMap.SimpleImmutableEntry; import java.util.Map.Entry; import pl.edu.mimuw.cloudatlas.agent.messages.*; import pl.edu.mimuw.cloudatlas.model.*; import pl.edu.mimuw.cloudatlas.querysigner.*; import javax.crypto.BadPaddingException; import javax.crypto.IllegalBlockSizeException; import javax.crypto.NoSuchPaddingException; public class Stanik extends Module { private class InvalidUpdateAttributesMessage extends Exception { public InvalidUpdateAttributesMessage(String message) { super(message); } } private ZMI hierarchy; private HashMap queries; private long freshnessPeriod; private Set contacts; private ValueTime contactsTimestamp; private PathName ourPath; private PublicKey publicKey; public Stanik(PathName ourPath, long freshnessPeriod) { super(ModuleType.STATE); this.ourPath = ourPath; hierarchy = new ZMI(); queries = new HashMap(); hierarchy.getAttributes().add("timestamp", new ValueTime(0l)); this.freshnessPeriod = freshnessPeriod; this.contactsTimestamp = ValueUtils.currentTime(); this.contacts = new HashSet<>(); String publicKeyFile = System.getProperty("public_key_file"); this.publicKey = KeyUtils.getPublicKey(publicKeyFile); setDefaultQueries(); } private void setDefaultQueries() { String cardinalityQuery = "SELECT sum(cardinality) AS cardinality"; String contactsQuery = "SELECT random(5, unfold(contacts)) AS contacts"; setDefaultQuery("&cardinality", cardinalityQuery); setDefaultQuery("&contacts", contactsQuery); } private void setDefaultQuery(String name, String query) { try { ValueQuery queryValue = new ValueQuery(query); queries.put(new Attribute(name), queryValue); } catch (Exception e) { System.out.println("ERROR: failed to compile default query"); } } public Stanik(PathName ourPath) { this(ourPath, 60 * 1000); } public void handleTyped(StanikMessage message) throws InterruptedException, InvalidMessageType { switch(message.getType()) { case GET_STATE: handleGetState((GetStateMessage) message); break; case REMOVE_ZMI: handleRemoveZMI((RemoveZMIMessage) message); break; case SET_ATTRIBUTE: handleSetAttribte((SetAttributeMessage) message); break; case UPDATE_ATTRIBUTES: handleUpdateAttributes((UpdateAttributesMessage) message); break; case UPDATE_QUERIES: handleUpdateQueries((UpdateQueriesMessage) message); break; case UPDATE_CONTACTS: handleUpdateContacts((UpdateContactsMessage) message); break; default: throw new InvalidMessageType("This type of message cannot be handled by Stanik" + message.getType().toString()); } } public void handleGetState(GetStateMessage message) throws InterruptedException { pruneHierarchy(); addValues(); StateMessage response = new StateMessage( "", message.getRequestingModule(), 0, message.getRequestId(), hierarchy.clone(), (HashMap) queries.clone(), contacts ); sendMessage(response); } private void pruneHierarchy() { ValueTime now = ValueUtils.currentTime(); pruneZMI(hierarchy, now); } private void addValues() { addValuesRecursive(hierarchy, 0); } private void addValuesRecursive(ZMI zmi, long level) { zmi.getAttributes().addOrChange("level", new ValueInt(level)); if (ValueUtils.isPrefix(zmi.getPathName(), ourPath)) { zmi.getAttributes().addOrChange("owner", new ValueString(ourPath.toString())); } if (zmi.getPathName().equals(ourPath)) { zmi.getAttributes().addOrChange("cardinality", new ValueInt(1l)); } for (ZMI son : zmi.getSons()) { addValuesRecursive(son, level + 1); } } private boolean pruneZMI(ZMI zmi, ValueTime time) { Value timestamp = zmi.getAttributes().get("timestamp"); boolean isLeaf = zmi.getSons().isEmpty(); List sonsToRemove = new LinkedList(); if (ValueUtils.valueLower(timestamp, time.subtract(new ValueDuration(freshnessPeriod)))) { if (zmi.getFather() != null) { return true; } } else { for (ZMI son : zmi.getSons()) { if (pruneZMI(son, time)) { sonsToRemove.add(son); } } } for (ZMI son : sonsToRemove) { zmi.removeSon(son); } if (!isLeaf && zmi.getSons().isEmpty()) { return true; } return false; } public void handleRemoveZMI(RemoveZMIMessage message) { try { ZMI zmi = hierarchy.findDescendant(new PathName(message.getPathName())); if (ValueUtils.valueLower(zmi.getAttributes().getOrNull("timestamp"), message.getRemovalTimestamp())) { zmi.getFather().removeSon(zmi); } else { System.out.println("DEBUG: not removing zone with fresher timestamp than removal"); } } catch (ZMI.NoSuchZoneException e) { System.out.println("DEBUG: trying to remove zone that doesn't exist"); } } /* * Always adds the new attribute. * The zone must already exist. * The zone's timestamp will be the maximum of its current timestamp or the * timestamp provided with the new value. */ public void handleSetAttribte(SetAttributeMessage message) { try { PathName descendantPath = new PathName(message.getPathName()); if (!hierarchy.descendantExists(descendantPath)) { addMissingZones(descendantPath); } ZMI zmi = hierarchy.findDescendant(descendantPath); ValueTime updateTimestamp = message.getUpdateTimestamp(); ValueTime currentTimestamp = (ValueTime) zmi.getAttributes().getOrNull("timestamp"); if (ValueUtils.valueLower(currentTimestamp, updateTimestamp)) { zmi.getAttributes().addOrChange("timestamp", updateTimestamp); } zmi.getAttributes().addOrChange(message.getAttribute(), message.getValue()); } catch (ZMI.NoSuchZoneException e) { System.out.println("DEBUG: trying to set attribute in zone that doesn't exist"); } } public void handleUpdateAttributes(UpdateAttributesMessage message) { try { validateUpdateAttributesMessage(message); if (!ValueUtils.valueLower( message.getAttributes().get("timestamp"), new ValueTime(System.currentTimeMillis() - freshnessPeriod) )) { addMissingZones(new PathName(message.getPathName())); ZMI zone = hierarchy.findDescendant(message.getPathName()); AttributesMap attributes = zone.getAttributes(); if (ValueUtils.valueLower(attributes.get("timestamp"), message.getAttributes().get("timestamp"))) { AttributesUtil.transferAttributes(message.getAttributes(), attributes); } else { System.out.println("DEBUG: not applying update with older attributes"); } } else { System.out.println("DEBUG: not applying update with stale attributes"); } } catch (InvalidUpdateAttributesMessage e) { System.out.println("ERROR: invalid UpdateAttributesMessage " + e.getMessage()); } catch (ZMI.NoSuchZoneException e) { System.out.println("ERROR: zone should exist after being added"); } } public void handleUpdateQueries(UpdateQueriesMessage message) { System.out.println("INFO: Stanik handles update queries"); for (Entry entry : message.getQueries().entrySet()) { Attribute attribute = entry.getKey(); ValueQuery query = entry.getValue(); System.out.println(query.getSignature()); System.out.println(query); System.out.println(query.getCode()); if (query.getSignature() != null && query.getSignature().length != 0) { try { if (query.isInstalled()) { QuerySignerApiImplementation.validateInstallQuery( attribute.getName(), QueryUtils.constructQueryData(query), this.publicKey); } else { QuerySignerApiImplementation.validateUninstallQuery( attribute.getName(), QueryUtils.constructQueryData(query), this.publicKey); } } catch (RemoteException | IllegalBlockSizeException | InvalidKeyException | BadPaddingException | NoSuchAlgorithmException | NoSuchPaddingException | QuerySigner.InvalidQueryException e) { System.out.println("ERROR: Query " + attribute.getName() + " was not updated in Stanik with error message " + e.getMessage()); e.printStackTrace(); continue; } } ValueTime timestamp = new ValueTime(entry.getValue().getTimestamp()); ValueQuery currentTimestampedQuery = queries.get(attribute); if (currentTimestampedQuery == null || ValueUtils.valueLower(new ValueTime(currentTimestampedQuery.getTimestamp()), timestamp)) { queries.put(entry.getKey(), entry.getValue()); } } } private void validateUpdateAttributesMessage(UpdateAttributesMessage message) throws InvalidUpdateAttributesMessage { validateZoneName(message); validateHasTimeStamp(message); } private void validateZoneName(UpdateAttributesMessage message) throws InvalidUpdateAttributesMessage { Value name = message.getAttributes().getOrNull("name"); if (message.getPathName().equals("/")) { if (name != null && !name.isNull()) { throw new InvalidUpdateAttributesMessage("The root zone should have a null name"); } } else { if (valueNonNullOfType(name, TypePrimitive.STRING)) { ValueString nameString = (ValueString) name; String expectedName = (new PathName(message.getPathName())).getSingletonName(); if (!nameString.getValue().equals(expectedName)) { throw new InvalidUpdateAttributesMessage("The zone's name attribute should match its path name"); } } else { throw new InvalidUpdateAttributesMessage("Zone attributes should have a name attribute of type String"); } } } private void validateHasTimeStamp(UpdateAttributesMessage message) throws InvalidUpdateAttributesMessage { if (!valueNonNullOfType(message.getAttributes().getOrNull("timestamp"), TypePrimitive.TIME)) { throw new InvalidUpdateAttributesMessage("Zone attriutes should have a timestamp attribute of type Time"); } } private boolean valueNonNullOfType(Value value, Type type) { return value != null && !value.isNull() && value.getType().isCompatible(type); } private void addMissingZones(PathName path) { try { if (!hierarchy.descendantExists(path)) { addMissingZones(path.levelUp()); ZMI parent = hierarchy.findDescendant(path.levelUp()); ZMI newSon = new ZMI(parent); newSon.getAttributes().add("name", new ValueString(path.getSingletonName())); newSon.getAttributes().add("timestamp", new ValueTime(0l)); parent.addSon(newSon); } } catch (ZMI.NoSuchZoneException e) { System.out.println("ERROR: zone should exist after being added"); } } public ZMI getHierarchy() { return hierarchy; } public HashMap getQueries() { return queries; } private void handleUpdateContacts(UpdateContactsMessage message) { if (message.getContacts() != null && !message.getContacts().isEmpty() && ValueUtils.valueLower(contactsTimestamp, new ValueTime(message.getTimestamp()))) { this.contacts = message.getContacts(); } } }