blob: 2d831c92d52756eb8ebc5d6928a17f7d760c448c [file] [log] [blame]
/*
* Copyright 2016 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.
*/
#include "TcpServerForRunner.h"
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <dirent.h>
#include <netdb.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <utils/RefBase.h>
#include <iostream>
#include <sstream>
#include "AgentRequestHandler.h"
#include "BinderClientToDriver.h"
#include "test/vts/proto/AndroidSystemControlMessage.pb.h"
#include "test/vts/proto/InterfaceSpecificationMessage.pb.h"
using namespace std;
namespace android {
namespace vts {
const static int kTcpPort = 5001;
// Starts to run a TCP server (foreground).
int StartTcpServerForRunner(const char* spec_dir_path,
const char* fuzzer_path32,
const char* fuzzer_path64, const char* shell_path32,
const char* shell_path64) {
int sockfd;
socklen_t clilen;
struct sockaddr_in serv_addr;
struct sockaddr_in cli_addr;
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0) {
cerr << "Can't open the socket." << endl;
return -1;
}
bzero((char*)&serv_addr, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = INADDR_ANY;
serv_addr.sin_port = htons(kTcpPort);
if (::bind(sockfd, (struct sockaddr*)&serv_addr, sizeof(serv_addr)) == -1) {
cerr << __func__ << " binding failed." << endl;
return -1;
}
if (listen(sockfd, 5) == -1) {
cerr << __func__ << " listen failed." << endl;
return -1;
}
clilen = sizeof(cli_addr);
while (true) {
int newsockfd = ::accept(sockfd, (struct sockaddr*)&cli_addr, &clilen);
if (newsockfd < 0) {
cerr << __func__ << " accept failed" << endl;
return -1;
}
cout << "[runner->agent] NEW SESSION" << endl;
cout << "[runner->agent] ===========" << endl;
pid_t pid = fork();
if (pid == 0) { // child
close(sockfd);
cout << "[agent] process for a runner - pid = " << getpid() << endl;
AgentRequestHandler handler(spec_dir_path, fuzzer_path32, fuzzer_path64,
shell_path32, shell_path64);
handler.SetSockfd(newsockfd);
while (handler.ProcessOneCommand())
;
exit(-1);
} else if (pid < 0) {
cerr << "can't fork a child process to handle a session." << endl;
return -1;
} else {
close(newsockfd);
}
}
return 0;
}
} // namespace vts
} // namespace android