2019-02-28 08:31:04 +00:00
|
|
|
/*
|
|
|
|
Looking Glass - KVM FrameRelay (KVMFR) Client
|
|
|
|
Copyright (C) 2017-2019 Geoffrey McRae <geoff@hostfission.com>
|
|
|
|
https://looking-glass.hostfission.com
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "app.h"
|
|
|
|
#include "debug.h"
|
2019-03-01 10:01:25 +00:00
|
|
|
#include <getopt.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2019-03-01 01:54:15 +00:00
|
|
|
#include <stdlib.h>
|
2019-03-01 10:01:25 +00:00
|
|
|
#include <string.h>
|
2019-03-01 01:54:15 +00:00
|
|
|
#include <pthread.h>
|
|
|
|
|
2019-03-01 10:01:25 +00:00
|
|
|
struct app
|
|
|
|
{
|
|
|
|
unsigned int shmSize;
|
|
|
|
int shmFD;
|
|
|
|
void * shmMap;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct params
|
|
|
|
{
|
|
|
|
const char * shmDevice;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct app app;
|
|
|
|
|
|
|
|
static struct params params =
|
|
|
|
{
|
|
|
|
.shmDevice = "uio0"
|
|
|
|
};
|
|
|
|
|
2019-03-01 01:54:15 +00:00
|
|
|
struct osThreadHandle
|
|
|
|
{
|
|
|
|
const char * name;
|
|
|
|
osThreadFunction function;
|
|
|
|
void * opaque;
|
|
|
|
pthread_t handle;
|
|
|
|
int resultCode;
|
|
|
|
};
|
2019-02-28 08:31:04 +00:00
|
|
|
|
|
|
|
int main(int argc, char * argv[])
|
|
|
|
{
|
2019-03-01 10:01:25 +00:00
|
|
|
static struct option longOptions[] =
|
|
|
|
{
|
|
|
|
{"shmDevice", required_argument, 0, 'f'},
|
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
int optionIndex = 0;
|
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
int c = getopt_long(argc, argv, "f:", longOptions, &optionIndex);
|
|
|
|
if (c == -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch(c)
|
|
|
|
{
|
|
|
|
case 'f':
|
|
|
|
params.shmDevice = optarg;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the device size
|
|
|
|
{
|
|
|
|
char file[100] = "/sys/class/uio/";
|
2019-03-01 10:03:10 +00:00
|
|
|
strncat(file, params.shmDevice , sizeof(file) - 1);
|
|
|
|
strncat(file, "/maps/map0/size", sizeof(file) - 1);
|
2019-03-01 10:01:25 +00:00
|
|
|
|
|
|
|
int fd = open(file, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to open: %s", file);
|
|
|
|
DEBUG_ERROR("Did you remmeber to modprobe the kvmfr module?");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
char size[32];
|
|
|
|
int len = read(fd, size, sizeof(size));
|
|
|
|
if (len <= 0 || len == sizeof(size))
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to read: %s", file);
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
size[len] = '\0';
|
|
|
|
|
|
|
|
app.shmSize = strtoul(size, NULL, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
// open the device
|
|
|
|
{
|
|
|
|
char file[100] = "/dev/";
|
2019-03-01 10:03:10 +00:00
|
|
|
strncat(file, params.shmDevice, sizeof(file) - 1);
|
2019-03-01 10:01:25 +00:00
|
|
|
app.shmFD = open(file, O_RDWR, (mode_t)0600);
|
|
|
|
app.shmMap = MAP_FAILED;
|
|
|
|
if (app.shmFD < 0)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to open: %s", file);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-01 04:59:53 +00:00
|
|
|
bool termSig = false;
|
|
|
|
int result = app_main(&termSig);
|
2019-02-28 08:31:04 +00:00
|
|
|
os_shmemUnmap();
|
2019-03-01 10:01:25 +00:00
|
|
|
close(app.shmFD);
|
|
|
|
|
2019-02-28 08:31:04 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int os_shmemSize()
|
|
|
|
{
|
2019-03-01 10:01:25 +00:00
|
|
|
return app.shmSize;
|
2019-02-28 08:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool os_shmemMmap(void **ptr)
|
|
|
|
{
|
2019-03-01 10:01:25 +00:00
|
|
|
if (app.shmMap == MAP_FAILED)
|
|
|
|
{
|
|
|
|
app.shmMap = mmap(0, app.shmSize, PROT_READ | PROT_WRITE, MAP_SHARED, app.shmFD, 0);
|
|
|
|
if (app.shmMap == MAP_FAILED)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to map the shared memory device: %s", params.shmDevice);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*ptr = app.shmMap;
|
|
|
|
return true;
|
2019-02-28 08:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void os_shmemUnmap()
|
|
|
|
{
|
2019-03-01 10:01:25 +00:00
|
|
|
if (app.shmMap == MAP_FAILED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
munmap(app.shmMap, app.shmSize);
|
|
|
|
app.shmMap = MAP_FAILED;
|
2019-03-01 01:54:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void * threadWrapper(void * opaque)
|
|
|
|
{
|
|
|
|
osThreadHandle * handle = (osThreadHandle *)opaque;
|
|
|
|
handle->resultCode = handle->function(handle->opaque);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool os_createThread(const char * name, osThreadFunction function, void * opaque, osThreadHandle ** handle)
|
|
|
|
{
|
|
|
|
*handle = (osThreadHandle*)malloc(sizeof(osThreadHandle));
|
|
|
|
(*handle)->name = name;
|
|
|
|
(*handle)->function = function;
|
|
|
|
(*handle)->opaque = opaque;
|
|
|
|
|
|
|
|
if (pthread_create(&(*handle)->handle, NULL, threadWrapper, *handle) != 0)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("pthread_create failed for thread: %s", name);
|
|
|
|
free(*handle);
|
|
|
|
*handle = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool os_joinThread(osThreadHandle * handle, int * resultCode)
|
|
|
|
{
|
|
|
|
if (pthread_join(handle->handle, NULL) != 0)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("pthread_join failed for thread: %s", handle->name);
|
|
|
|
free(handle);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resultCode)
|
|
|
|
*resultCode = handle->resultCode;
|
|
|
|
|
|
|
|
free(handle);
|
|
|
|
return true;
|
2019-02-28 08:31:04 +00:00
|
|
|
}
|