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
|
/* This is part of um-ViewOS
* The user-mode implementation of OSVIEW -- A Process with a View
*
* example of um-ViewOS module:
* Identity module.
*
* Copyright 2005 Renzo Davoli University of Bologna - Italy
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2, as
* published by the Free Software Foundation.
*
* 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.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* $Id: real.c 1003 2011-09-06 10:32:34Z rd235 $
*
*/
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/uio.h>
#include <string.h>
#include <config.h>
#include "module.h"
#include "libummod.h"
#include "gdebug.h"
// int read(), write(), close();
static struct service s;
VIEWOS_SERVICE(s)
static long addproc(int id, int max)
{
GDEBUG(3, "new process id %d pid %d max %d",id,um_mod_getpid(),max);
return 0;
}
static long delproc(int id)
{
GDEBUG(3, "terminated process id %d pid %d",id,um_mod_getpid());
return 0;
}
static long addmodule(char *sender)
{
GDEBUG(3, "new module loaded. %s", sender);
return 0;
}
static long delmodule(char *sender)
{
GDEBUG(3, "module %s removed", sender);
return 0;
}
static long ctl(int type, char *sender, va_list ap)
{
int id, /*ppid,*/ max;
switch(type)
{
case MC_PROC | MC_ADD:
id = va_arg(ap, int);
/*ppid = */ va_arg(ap, int);
max = va_arg(ap, int);
return addproc(id, max);
case MC_PROC | MC_REM:
id = va_arg(ap, int);
return delproc(id);
case MC_MODULE | MC_ADD:
return addmodule(sender);
case MC_MODULE | MC_REM:
return delmodule(sender);
default:
return -1;
}
}
void *viewos_init(char *args)
{
return ht_tab_pathadd(CHECKPATH,"/","/","real",0,"",&s,0,NULL,NULL);
}
void viewos_fini(void *data)
{
struct ht_elem *proc_ht=data;
ht_tab_del(proc_ht);
}
static void
__attribute__ ((constructor))
init (void)
{
printk(KERN_NOTICE "real init\n");
s.name="real";
s.description="Identity (server side)";
s.ctl = ctl;
MCH_ZERO(&(s.ctlhs));
MCH_SET(MC_PROC, &(s.ctlhs));
MCH_SET(MC_MODULE, &(s.ctlhs));
s.syscall=(sysfun *)calloc(scmap_scmapsize,sizeof(sysfun));
s.socket=(sysfun *)calloc(scmap_sockmapsize,sizeof(sysfun));
SERVICESYSCALL(s, open, (sysfun)open);
SERVICESYSCALL(s, read, read);
SERVICESYSCALL(s, write, write);
SERVICESYSCALL(s, close, close);
#if !defined(__x86_64__)
//SERVICESYSCALL(s, stat64, stat64);
SERVICESYSCALL(s, lstat64, lstat64);
#else
SERVICESYSCALL(s, lstat, lstat);
#endif
SERVICESYSCALL(s, readlink, readlink);
SERVICESYSCALL(s, getdents64, getdents64);
SERVICESYSCALL(s, access, access);
#ifdef __NR_fcntl64
SERVICESYSCALL(s, fcntl, fcntl64);
#else
SERVICESYSCALL(s, fcntl, fcntl);
#endif
#if !defined(__x86_64__)
SERVICESYSCALL(s, _llseek, _llseek);
#endif
}
static void
__attribute__ ((destructor))
fini (void)
{
free(s.syscall);
free(s.socket);
printk(KERN_NOTICE "real fini\n");
}
|