blob: 460b3ec7d9cce8b58a642fa3520961502a179c8c [file] [log] [blame]
// Copyright 2018 The Android Open Source Project
//
// This software is licensed under the terms of the GNU General Public
// License version 2, as published by the Free Software Foundation, and
// may be copied, distributed, and modified under those terms.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
#pragma once
#include "android/base/Log.h"
#include "android/emulation/AndroidPipe.h"
#include <map>
#include <vector>
namespace android {
namespace emulation {
// AdbMessageSniffer wraps around the raw adb message struct
class AdbMessageSniffer {
public:
struct amessage {
unsigned command; /* command identifier constant */
unsigned arg0; /* first argument */
unsigned arg1; /* second argument */
unsigned data_length; /* length of payload (0 is allowed) */
unsigned data_check; /* checksum of data payload */
unsigned magic; /* command ^ 0xffffffff */
};
struct apacket
{
amessage mesg;
uint8_t data[1024];
};
AdbMessageSniffer(const char* name);
~AdbMessageSniffer();
void read(const AndroidPipeBuffer*, int numBuffers, int count);
private:
apacket mPacket;
int mState;
uint8_t* mCurrPos;
std::vector<uint8_t> mBufferVec;
uint8_t* mBuffer;
uint8_t* mBufferP;
const char* mName;
void grow_buffer_if_needed(int count);
int getAllowedBytesToPrint(int bytes);
void checkForShellExit();
int getPayloadSize();
void copyFromBuffer(int count);
int readPayload(int dataSize);
void printMessage();
void updateCtsHeartBeatCount();
void printPayload();
const char* getCommandName(unsigned code);
void startNewMessage();
int readHeader(int inputDataSize);
void readToBuffer(const AndroidPipeBuffer* buffers, int numBuffers, int inputDataSize);
void parseBuffer(int bufferLength);
};
} // namespace emulation
} // namespace android