blob: bc8d6717eac103c41f8cc8720e8482589210ea72 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "slave/validation.hpp"
namespace mesos {
namespace internal {
namespace slave {
namespace validation {
namespace executor {
namespace call {
Option<Error> validate(const mesos::executor::Call& call)
{
if (!call.IsInitialized()) {
return Error("Not initialized: " + call.InitializationErrorString());
}
// All calls should have executor id set.
if (!call.has_executor_id()) {
return Error("Expecting 'executor_id' to be present");
}
// All calls should have framework id set.
if (!call.has_framework_id()) {
return Error("Expecting 'framework_id' to be present");
}
switch (call.type()) {
case mesos::executor::Call::SUBSCRIBE: {
if (!call.has_subscribe()) {
return Error("Expecting 'subscribe' to be present");
}
return None();
}
case mesos::executor::Call::UPDATE: {
if (!call.has_update()) {
return Error("Expecting 'update' to be present");
}
const TaskStatus& status = call.update().status();
if (!status.has_uuid()) {
return Error("Expecting 'uuid' to be present");
}
if (status.has_executor_id() &&
status.executor_id().value()
!= call.executor_id().value()) {
return Error("ExecutorID in Call: " +
call.executor_id().value() +
" does not match ExecutorID in TaskStatus: " +
call.update().status().executor_id().value()
);
}
if (status.source() != TaskStatus::SOURCE_EXECUTOR) {
return Error("Received Call from executor " +
call.executor_id().value() +
" of framework " +
call.framework_id().value() +
" with invalid source, expecting 'SOURCE_EXECUTOR'"
);
}
if (status.state() == TASK_STAGING) {
return Error("Received TASK_STAGING from executor " +
call.executor_id().value() +
" of framework " +
call.framework_id().value() +
" which is not allowed"
);
}
return None();
}
case mesos::executor::Call::MESSAGE: {
if (!call.has_message()) {
return Error("Expecting 'message' to be present");
}
return None();
}
default: {
return Error("Unknown call type");
}
}
}
} // namespace call {
} // namespace executor {
} // namespace validation {
} // namespace slave {
} // namespace internal {
} // namespace mesos {