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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
#include <gcj/cni.h>
#if defined(__MWERKS__)//dima
#include "CommPortIdentifier.h"
#else//dima
#include "gnu/io/CommPortIdentifier.h"
#endif//dima
/* Yikes... how do we do this? */
jstring gnu::io::CommPortIdentifier::native_psmisc_report_owner (jstring arg)
{
return ( JvNewStringUTF("Unknown Application") );
//return("Unknown Application\n");
}
/* just kille this for now... trying to get gcj working */
#ifdef __linux__
#else
/* loosly based on fuser.c by Werner Almesberger. */
/* Copyright 1993-1998 Werner Almesberger. See file COPYING for details.
psmisc (fuser, killall and pstree) program code, documentation and
auxiliary programs are
Copyright 1993-1998 Werner Almesberger.
All rights reserved.
Redistribution and use in source and binary forms of parts of or the
whole original or derived work are permitted provided that the
original work is properly attributed to the author. The name of the
author may not be used to endorse or promote products derived from
this software without specific prior written permission. This work
is provided "as is" and without any express or implied warranties.
*/
#include <stdio.h>
#include <string.h>
#include <dirent.h>
#include <pwd.h>
#include <signal.h>
#include <sys/stat.h>
#include <linux/major.h>
#include <unistd.h>
#include <sys/types.h>
#include <stdlib.h>
#define COMM_LEN 16
#define PROC_BASE "/proc"
#define UID_UNKNOWN -1
#define NAME_FIELD 20 /* space reserved for file name */
#define REF_FILE 1 /* an open file */
#define REF_ROOT 2 /* current root */
#define REF_CWD 4 /* current directory */
#define REF_EXE 8 /* executable */
#define REF_MMAP 16 /* mmap'ed file or library */
#define FLAG_UID 2 /* show uid */
#define FLAG_VERB 4 /* show verbose output */
#define FLAG_DEV 8 /* show all processes using this device */
char returnstring[256];
void parse_args(const char *);
typedef struct {
const char *name;
} SPACE_DSC;
typedef enum { it_proc,it_mount,it_loop,it_swap } ITEM_TYPE;
typedef struct item_dsc {
ITEM_TYPE type;
union {
struct {
pid_t pid;
int uid; /* must also accept UID_UNKNOWN */
int ref_set;
} proc;
struct {
const char *path;
} misc;
} u;
struct item_dsc *next;
} ITEM_DSC;
typedef struct file_dsc {
const char *name; /* NULL if previous entry has name */
dev_t dev;
ino_t ino;
int flags,sig_num;
SPACE_DSC *name_space; /* or NULL if no indication */
ITEM_DSC *items;
struct file_dsc *named,*next;
} FILE_DSC;
static SPACE_DSC name_spaces[] = { };
static FILE_DSC *files = NULL;
static FILE_DSC *last_named = NULL;
static int all = 0,found_item = 0;
static void add_file(const char *path,unsigned long device,unsigned long inode, pid_t pid,int ref)
{
struct stat st;
FILE_DSC *file,*next;
ITEM_DSC **item,*here;
unsigned long mount_dev = 0;
if (device) mount_dev = device;
for (file = files; file; file = next) {
next = file->next;
if (file->flags & FLAG_DEV ? mount_dev && mount_dev == file->dev :
device == file->dev && inode == file->ino) {
if (!file->name) file = file->named;
for (item = &file->items; *item; item = &(*item)->next)
if ((*item)->type == it_proc && (*item)->u.proc.pid >= pid)
break;
if (*item && (*item)->u.proc.pid == pid) here = *item;
else {
if (!(here = malloc(sizeof(ITEM_DSC)))) {
perror("malloc");
exit(1);
}
here->type = it_proc;
here->u.proc.pid = pid;
here->u.proc.uid = UID_UNKNOWN;
here->u.proc.ref_set = 0;
here->next = *item;
*item = here;
found_item = 1;
}
here->u.proc.ref_set |= ref;
if ((file->flags & (FLAG_UID | FLAG_VERB)) && here->u.proc.uid == UID_UNKNOWN && lstat(path,&st) >= 0)
here->u.proc.uid = st.st_uid;
}
}
}
static void check_dir(const char *rel,pid_t pid,int type)
{
DIR *dir;
struct dirent *de;
char path[PATH_MAX+1];
struct stat st;
if (!(dir = opendir(rel))) return;
while ( (de = readdir(dir) ) )
if (strcmp(de->d_name,".") && strcmp(de->d_name,"..")) {
sprintf(path,"%s/%s",rel,de->d_name);
if (stat(path,&st) >= 0)
add_file(path,st.st_dev,st.st_ino,pid,type);
}
(void) closedir(dir);
}
extern void scan_fd(void)
{
DIR *dir;
struct dirent *de;
char path[PATH_MAX+1];
pid_t pid;
int empty;
if (!(dir = opendir(PROC_BASE))) {
perror(PROC_BASE);
exit(1);
}
empty = 1;
while ( ( de = readdir(dir) ) )
if ( ( pid = atoi(de->d_name) ) ) {
empty = 0;
sprintf(path,"%s/%d",PROC_BASE,pid);
if (chdir(path) >= 0) {
check_dir("fd",pid,REF_FILE);
}
}
(void) closedir(dir);
if (empty) {
fprintf(stderr,PROC_BASE " is empty (not mounted ?)\n");
exit(1);
}
}
extern void show_user(const char tstring[],char *rs)
{
const ITEM_DSC *item;
FILE *f;
const struct passwd *pw;
const char *user,*scan;
char tmp[10],path[PATH_MAX+1],comm[COMM_LEN+1];
int dummy;
int keeper;
pid_t self;
const char *name;
int uid;
char temp[80];
parse_args(tstring);
scan_fd();
if (seteuid(getuid()) < 0) {
sprintf(rs, "%s", "Unknown Linux Application");
return;
}
self = getpid();
if (!files->name || !(files->items || all))
{
sprintf(rs, "%s", "Unknown Linux Application");
return;
}
scan = files->name;
strcat(returnstring," ");
item = files->items;
sprintf(path,PROC_BASE "/%d/stat",item->u.proc.pid);
strcpy(comm,"???");
if ( ( f = fopen(path,"r") ) ) {
(void) fscanf(f,"%d (%[^)]",&dummy,comm);
(void) fclose(f);
}
name = comm;
uid = item->u.proc.uid;
if (uid == UID_UNKNOWN) user = "???";
else if ( ( pw = getpwuid(uid) ) ) user = pw->pw_name;
else {
sprintf(tmp,"%d",uid);
user = tmp;
}
strcat(returnstring,user);
strcat(returnstring," PID = ");
sprintf(temp,"%6d ",item->u.proc.pid);
strcat(returnstring,temp);
strcat(returnstring,"Program = ");
if (name)
{
for (scan = name; *scan; scan++)
{
if (*scan == '\\')
{
sprintf(temp,"\\\\");
strcat(returnstring,temp);
}
else if (*scan > ' ' && *scan <= '~')
{
keeper=strlen(returnstring);
returnstring[keeper]= *scan;
returnstring[keeper+1]= '\0';
}
else {
sprintf(temp,"\\%03o", (int) scan);
strcat(returnstring,temp);
}
}
}
strcpy(rs,returnstring);
}
static void enter_item(const char *name,int flags,int sig_number,dev_t dev, ino_t ino,SPACE_DSC *name_space)
{
static FILE_DSC *last = NULL;
FILE_DSC *new;
if (!(new = malloc(sizeof(FILE_DSC)))) {
perror("malloc");
exit(1);
}
if (last_named && !strcmp(last_named->name,name) &&
last_named->name_space == name_space) new->name = NULL;
else if (!(new->name = strdup(name))) {
perror("strdup");
exit(1);
}
new->flags = flags;
new->sig_num = sig_number;
new->items = NULL;
new->next = NULL;
new->dev = dev;
new->ino = ino;
new->name_space = name_space;
if (last) last->next = new;
else files = new;
last = new;
new->named = last_named;
if (new->name) last_named = new;
}
void parse_args(const char *argv)
{
SPACE_DSC *name_space;
int flags,sig_number,no_files;
SPACE_DSC *here;
struct stat st;
flags = 0;
sig_number = SIGKILL;
name_space = name_spaces;
no_files = 1;
flags |= FLAG_UID;
no_files = 0;
last_named = NULL;
this_name_space = name_space;
if (this_name_space == name_spaces) {
if (stat(argv,&st) < 0) {
perror(argv);
exit(0);
}
if (!S_ISSOCK(st.st_mode) || (flags & FLAG_DEV))
enter_item(argv,flags,sig_number,st.st_dev,st.st_ino,NULL);
}
}
jstring Java::gnu::io::CommPortIdentifier::native_1psmisc_1report_1owner (
jstring arg
)
{
char returnstring[256];
const char *filename = JvGetStringChars(arg);
show_user(str,returnstring);
return (*env)->NewStringUTF(env, returnstring);
}
#endif /* __linux__ */
|