1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
#include "../../IAndroidShm.h"
#include <binder/MemoryHeapBase.h>
#include <binder/IServiceManager.h>
#include "../../../common/shm.h"
namespace android {
static sp<IMemoryHeap> receiverMemBase;
#define MAX_SHARED_MEMORY_COUNT 257
sp<IAndroidShm> getAndroidShmService() {
sp<IAndroidShm> shm = 0;
/* Get the buffer service */
if (shm == NULL) {
sp<IServiceManager> sm = defaultServiceManager();
sp<IBinder> binder;
binder = sm->getService(String16("com.samsung.android.jam.IAndroidShm"));
if (binder != 0) {
shm = IAndroidShm::asInterface(binder);
//shm = interface_cast<IAndroidShm>(binder);
}
}
return shm;
}
unsigned int * getBufferMemPointer(int index)
{
sp<IAndroidShm> shm = getAndroidShmService();
if (shm == NULL) {
printf("The EneaBufferServer is not published\n");
return (unsigned int *)-1; /* return an errorcode... */
} else {
receiverMemBase = shm->getBuffer(index);
if(receiverMemBase != NULL)
return (unsigned int *) receiverMemBase->getBase();
else
return (unsigned int*)-1;
}
}
}
using namespace android;
void showStatus() {
sp<IAndroidShm> shm = getAndroidShmService();
if(shm == NULL) {
printf("shm service is not available\n");
return;
}
printf("<<<<<<<<<<< dump memory allocation status >>>>>>>>>>\n");
for(int i = 256; i >= 0; i--) {
if(shm->isAllocated(i) == 1) {
printf("Mem[%3d] == 0x%x\n", i, (unsigned int)getBufferMemPointer(i));
} else {
printf("Mem[%3d] == NULL\n", i);
}
}
}
void showRegistryIndex() {
sp<IAndroidShm> shm = getAndroidShmService();
if(shm == NULL) {
printf("shm service is not available\n");
return;
}
printf("<<<<<<<<<<< show registry index >>>>>>>>>>\n");
printf("index [%3d]\n",shm->getRegistryIndex());
}
void showHeader() {
sp<IAndroidShm> shm = getAndroidShmService();
if(shm == NULL) {
printf("shm service is not available\n");
return;
}
if(shm->getRegistryIndex() > 256) {
printf("don't have a registry header\n");
return;
}
unsigned int* buffer = getBufferMemPointer(shm->getRegistryIndex());
if(buffer) {
jack_shm_header_t * header = (jack_shm_header_t*)buffer;
printf("<<<<<<<<<< register header value >>>>>>>>>>\n");
printf("memory address 0x%x 0x%x\n", (unsigned int)(header), (unsigned int)buffer);
printf("magic = %d\n", header->magic);
printf("protocol = %d\n", header->protocol);
printf("type = %d\n", header->type);
printf("size = %d\n", header->size);
printf("hdr_len = %d\n", header->hdr_len);
printf("entry_len = %d\n", header->entry_len);
for(int j = 0; j < MAX_SERVERS; j++) {
//char name[256];
//memset(name, '\0', 256);
//strncpy(name, header->server[j].name, 10);
printf("server[%d] pid = %d, name = %s\n", j, header->server[j].pid, header->server[j].name);
}
}
}
void showBody() {
sp<IAndroidShm> shm = getAndroidShmService();
if(shm == NULL) {
printf("shm service is not available\n");
return;
}
if(shm->getRegistryIndex() > 256) {
printf("don't have a registry body\n");
return;
}
unsigned int* buffer = getBufferMemPointer(shm->getRegistryIndex());
if(buffer) {
jack_shm_header_t * header = (jack_shm_header_t*)buffer;
printf("<<<<<<<<<< registry body value >>>>>>>>>>\n");
jack_shm_registry_t * registry = (jack_shm_registry_t *) (header + 1);
for(int k = 255; k >= 0; k--) {
printf("registry[%3d] index[%3d],allocator[%3d],size[%6d],id[%10s],fd[%3d]\n", k,
registry[k].index, registry[k].allocator, registry[k].size,
registry[k].id,
registry[k].fd);
}
}
}
void showSemaphore() {
sp<IAndroidShm> shm = getAndroidShmService();
if(shm == NULL) {
printf("shm service is not available\n");
return;
}
shm->sendCommand("semaphore");
printf("log will be shown in the logcat log\n");
}
int main(int argc, char** argv) {
// base could be on same address as Servers base but this
// is purely by luck do NEVER rely on this. Linux memory
// management may put it wherever it likes.
if(argc < 2) {
printf("usage\n shmservicedump [status|header|body|index|semaphore]\n");
printf(" status: show the shared memory allocation status\n");
printf(" header: show the registry header infomations if the registry exist\n");
printf(" body: show the registry body infomations if the registry exist\n");
printf(" index: show the index of array that is allocated registry shared memory\n");
printf(" semaphore: show the memory array about semaphore simulation\n");
return 0;
}
if(strcmp(argv[1], "semaphore") == 0) {
showSemaphore();
} else if(strcmp(argv[1], "index") == 0) {
showRegistryIndex();
} else if(strcmp(argv[1], "status") == 0) {
showStatus();
} else if(strcmp(argv[1], "header") == 0) {
showHeader();
} else if(strcmp(argv[1], "body") == 0) {
showBody();
} else {
printf("%s is invalid parameter\n", argv[1]);
}
return 0;
}
|