blob: a9b6fdc615ff9f34e4e50ad6aa4edd1062a0eea9 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed 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.
*/
#ifndef NETD_SERVER_IPTABLES_RESTORE_CONTROLLER_H
#define NETD_SERVER_IPTABLES_RESTORE_CONTROLLER_H
#include <memory>
#include <mutex>
#include <sys/types.h>
#include "NetdConstants.h"
class IptablesProcess;
class IptablesRestoreController {
public:
// Not for general use. Use gCtls->iptablesRestoreCtrl
// to get an instance of this class.
IptablesRestoreController();
// Execute |commands| on the given |target|.
int execute(const IptablesTarget target, const std::string& commands);
// Execute |commands| on the given |target|, and populate |output| with stdout.
int execute(const IptablesTarget target, const std::string& commands, std::string *output);
enum IptablesProcessType {
IPTABLES_PROCESS,
IP6TABLES_PROCESS,
INVALID_PROCESS = -1,
};
// Called by the SIGCHLD signal handler when it detects that one
// of the forked iptables[6]-restore process has died.
IptablesProcessType notifyChildTermination(pid_t pid);
virtual ~IptablesRestoreController();
protected:
friend class IptablesRestoreControllerTest;
pid_t getIpRestorePid(const IptablesProcessType type);
private:
static IptablesProcess* forkAndExec(const IptablesProcessType type);
int sendCommand(const IptablesProcessType type, const std::string& command,
std::string *output);
static bool drainAndWaitForAck(const std::unique_ptr<IptablesProcess> &process,
const std::string& command,
std::string *output);
static void maybeLogStderr(const std::unique_ptr<IptablesProcess> &process,
const std::string& command);
// Guards calls to execute().
std::mutex mLock;
std::unique_ptr<IptablesProcess> mIpRestore;
std::unique_ptr<IptablesProcess> mIp6Restore;
};
#endif // NETD_SERVER_IPTABLES_RESTORE_CONTROLLER_H