File: ummisc.h

package info (click to toggle)
umview 0.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 5,472 kB
  • sloc: ansic: 67,305; sh: 11,160; ruby: 914; makefile: 424; python: 141
file content (59 lines) | stat: -rw-r--r-- 1,490 bytes parent folder | download | duplicates (6)
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
/*
 *     UMMISC: Virtual Miscellanea in Userspace
 *     (virtualization of pid/uid/gid/time/uname....)
 *     Copyright (C) 2006  Renzo Davoli <renzo@cs.unibo.it>
 *
 *     This program can be distributed under the terms of the GNU GPLv2.
 *     See the file COPYING.LIB.
 */

#ifndef _UMMISC_H_
#define _UMMISC_H_
#include <stdint.h>
#include <sys/types.h>
#include <sys/stat.h>

#define IOCTLLENMASK      0x07ffffff
#define IOCTL_R           0x10000000
#define IOCTL_W           0x20000000

#define MISCFILESIZE	4096
#define UMMISC_DEBUG       (1 << 29)

typedef void (* voidfun)(void *arg);

struct ummisc;

#define UMMISC_GET 1
#define UMMISC_PUT 0
struct fsentry {
	char *name;
	struct fsentry *subdir;
	loff_t (*getputfun)(int op,char *value,int size,struct ummisc *mh,int tag,char *path);
	int tag;
};

struct ummisc_operations {
	struct fsentry root;
	void (*init) (char *path, unsigned long flags, char *args,struct ummisc *mh);
	void (*fini) (struct ummisc *mh);
};	

/* MOUNT ARG MGMT */
struct miscargitem {
	char *arg;
	void (*fun)();
};

void miscargs(char *opts, struct miscargitem *miscargtab, int miscargsize, void *arg);

struct ummisc *searchmisc_sc(int scno);
void *misc_getdl(struct ummisc *mh);

void ummisc_setprivatedata(struct ummisc *mischandle,void *privatedata);
void *ummisc_getprivatedata(struct ummisc *mischandle);

//void ummisc_setmode(struct ummisc *mischandle, mode_t mode);
//mode_t ummisc_getmode(struct ummisc *mischandle);
#endif /* _UMMISC_H_ */