aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/include/os.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2008-08-17 13:48:37 -0400
committerH. Peter Anvin <hpa@zytor.com>2008-10-23 01:55:19 -0400
commit8569c9140bd41089f9b6be8837ca421102714a90 (patch)
treecd289b322b215fe2ca2530aa320febfd99388d7f /arch/um/include/os.h
parent2515ddc6db8eb49a79f0fe5e67ff09ac7c81eab4 (diff)
x86, um: take arch/um/include/* out of the way
We can't just plop asm/* into it - userland helpers are built with it in search path and seeing asm/* show up there suddenly would be a bad idea. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/um/include/os.h')
-rw-r--r--arch/um/include/os.h304
1 files changed, 0 insertions, 304 deletions
diff --git a/arch/um/include/os.h b/arch/um/include/os.h
deleted file mode 100644
index db5be46e3e18..000000000000
--- a/arch/um/include/os.h
+++ /dev/null
@@ -1,304 +0,0 @@
1/*
2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
5
6#ifndef __OS_H__
7#define __OS_H__
8
9#include <stdarg.h>
10#include "irq_user.h"
11#include "longjmp.h"
12#include "mm_id.h"
13#include "sysdep/tls.h"
14#include "../os/include/file.h"
15
16#define CATCH_EINTR(expr) while ((errno = 0, ((expr) < 0)) && (errno == EINTR))
17
18#define OS_TYPE_FILE 1
19#define OS_TYPE_DIR 2
20#define OS_TYPE_SYMLINK 3
21#define OS_TYPE_CHARDEV 4
22#define OS_TYPE_BLOCKDEV 5
23#define OS_TYPE_FIFO 6
24#define OS_TYPE_SOCK 7
25
26/* os_access() flags */
27#define OS_ACC_F_OK 0 /* Test for existence. */
28#define OS_ACC_X_OK 1 /* Test for execute permission. */
29#define OS_ACC_W_OK 2 /* Test for write permission. */
30#define OS_ACC_R_OK 4 /* Test for read permission. */
31#define OS_ACC_RW_OK (OS_ACC_W_OK | OS_ACC_R_OK) /* Test for RW permission */
32
33/*
34 * types taken from stat_file() in hostfs_user.c
35 * (if they are wrong here, they are wrong there...).
36 */
37struct uml_stat {
38 int ust_dev; /* device */
39 unsigned long long ust_ino; /* inode */
40 int ust_mode; /* protection */
41 int ust_nlink; /* number of hard links */
42 int ust_uid; /* user ID of owner */
43 int ust_gid; /* group ID of owner */
44 unsigned long long ust_size; /* total size, in bytes */
45 int ust_blksize; /* blocksize for filesystem I/O */
46 unsigned long long ust_blocks; /* number of blocks allocated */
47 unsigned long ust_atime; /* time of last access */
48 unsigned long ust_mtime; /* time of last modification */
49 unsigned long ust_ctime; /* time of last change */
50};
51
52struct openflags {
53 unsigned int r : 1;
54 unsigned int w : 1;
55 unsigned int s : 1; /* O_SYNC */
56 unsigned int c : 1; /* O_CREAT */
57 unsigned int t : 1; /* O_TRUNC */
58 unsigned int a : 1; /* O_APPEND */
59 unsigned int e : 1; /* O_EXCL */
60 unsigned int cl : 1; /* FD_CLOEXEC */
61};
62
63#define OPENFLAGS() ((struct openflags) { .r = 0, .w = 0, .s = 0, .c = 0, \
64 .t = 0, .a = 0, .e = 0, .cl = 0 })
65
66static inline struct openflags of_read(struct openflags flags)
67{
68 flags.r = 1;
69 return flags;
70}
71
72static inline struct openflags of_write(struct openflags flags)
73{
74 flags.w = 1;
75 return flags;
76}
77
78static inline struct openflags of_rdwr(struct openflags flags)
79{
80 return of_read(of_write(flags));
81}
82
83static inline struct openflags of_set_rw(struct openflags flags, int r, int w)
84{
85 flags.r = r;
86 flags.w = w;
87 return flags;
88}
89
90static inline struct openflags of_sync(struct openflags flags)
91{
92 flags.s = 1;
93 return flags;
94}
95
96static inline struct openflags of_create(struct openflags flags)
97{
98 flags.c = 1;
99 return flags;
100}
101
102static inline struct openflags of_trunc(struct openflags flags)
103{
104 flags.t = 1;
105 return flags;
106}
107
108static inline struct openflags of_append(struct openflags flags)
109{
110 flags.a = 1;
111 return flags;
112}
113
114static inline struct openflags of_excl(struct openflags flags)
115{
116 flags.e = 1;
117 return flags;
118}
119
120static inline struct openflags of_cloexec(struct openflags flags)
121{
122 flags.cl = 1;
123 return flags;
124}
125
126/* file.c */
127extern int os_stat_file(const char *file_name, struct uml_stat *buf);
128extern int os_stat_fd(const int fd, struct uml_stat *buf);
129extern int os_access(const char *file, int mode);
130extern int os_set_exec_close(int fd);
131extern int os_ioctl_generic(int fd, unsigned int cmd, unsigned long arg);
132extern int os_get_ifname(int fd, char *namebuf);
133extern int os_set_slip(int fd);
134extern int os_mode_fd(int fd, int mode);
135
136extern int os_seek_file(int fd, unsigned long long offset);
137extern int os_open_file(const char *file, struct openflags flags, int mode);
138extern int os_read_file(int fd, void *buf, int len);
139extern int os_write_file(int fd, const void *buf, int count);
140extern int os_file_size(const char *file, unsigned long long *size_out);
141extern int os_file_modtime(const char *file, unsigned long *modtime);
142extern int os_pipe(int *fd, int stream, int close_on_exec);
143extern int os_set_fd_async(int fd);
144extern int os_clear_fd_async(int fd);
145extern int os_set_fd_block(int fd, int blocking);
146extern int os_accept_connection(int fd);
147extern int os_create_unix_socket(const char *file, int len, int close_on_exec);
148extern int os_shutdown_socket(int fd, int r, int w);
149extern void os_close_file(int fd);
150extern int os_rcv_fd(int fd, int *helper_pid_out);
151extern int create_unix_socket(char *file, int len, int close_on_exec);
152extern int os_connect_socket(const char *name);
153extern int os_file_type(char *file);
154extern int os_file_mode(const char *file, struct openflags *mode_out);
155extern int os_lock_file(int fd, int excl);
156extern void os_flush_stdout(void);
157extern int os_stat_filesystem(char *path, long *bsize_out,
158 long long *blocks_out, long long *bfree_out,
159 long long *bavail_out, long long *files_out,
160 long long *ffree_out, void *fsid_out,
161 int fsid_size, long *namelen_out,
162 long *spare_out);
163extern int os_change_dir(char *dir);
164extern int os_fchange_dir(int fd);
165
166/* start_up.c */
167extern void os_early_checks(void);
168extern void can_do_skas(void);
169extern void os_check_bugs(void);
170extern void check_host_supports_tls(int *supports_tls, int *tls_min);
171
172/* mem.c */
173extern int create_mem_file(unsigned long long len);
174
175/* process.c */
176extern unsigned long os_process_pc(int pid);
177extern int os_process_parent(int pid);
178extern void os_stop_process(int pid);
179extern void os_kill_process(int pid, int reap_child);
180extern void os_kill_ptraced_process(int pid, int reap_child);
181extern long os_ptrace_ldt(long pid, long addr, long data);
182
183extern int os_getpid(void);
184extern int os_getpgrp(void);
185
186extern void init_new_thread_signals(void);
187extern int run_kernel_thread(int (*fn)(void *), void *arg, jmp_buf **jmp_ptr);
188
189extern int os_map_memory(void *virt, int fd, unsigned long long off,
190 unsigned long len, int r, int w, int x);
191extern int os_protect_memory(void *addr, unsigned long len,
192 int r, int w, int x);
193extern int os_unmap_memory(void *addr, int len);
194extern int os_drop_memory(void *addr, int length);
195extern int can_drop_memory(void);
196extern void os_flush_stdout(void);
197
198/* uaccess.c */
199extern unsigned long __do_user_copy(void *to, const void *from, int n,
200 void **fault_addr, jmp_buf **fault_catcher,
201 void (*op)(void *to, const void *from,
202 int n), int *faulted_out);
203
204/* execvp.c */
205extern int execvp_noalloc(char *buf, const char *file, char *const argv[]);
206/* helper.c */
207extern int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv);
208extern int run_helper_thread(int (*proc)(void *), void *arg,
209 unsigned int flags, unsigned long *stack_out);
210extern int helper_wait(int pid);
211
212
213/* tls.c */
214extern int os_set_thread_area(user_desc_t *info, int pid);
215extern int os_get_thread_area(user_desc_t *info, int pid);
216
217/* umid.c */
218extern int umid_file_name(char *name, char *buf, int len);
219extern int set_umid(char *name);
220extern char *get_umid(void);
221
222/* signal.c */
223extern void timer_init(void);
224extern void set_sigstack(void *sig_stack, int size);
225extern void remove_sigstack(void);
226extern void set_handler(int sig, void (*handler)(int), int flags, ...);
227extern int change_sig(int signal, int on);
228extern void block_signals(void);
229extern void unblock_signals(void);
230extern int get_signals(void);
231extern int set_signals(int enable);
232
233/* util.c */
234extern void stack_protections(unsigned long address);
235extern int raw(int fd);
236extern void setup_machinename(char *machine_out);
237extern void setup_hostinfo(char *buf, int len);
238extern void os_dump_core(void) __attribute__ ((noreturn));
239
240/* time.c */
241extern void idle_sleep(unsigned long long nsecs);
242extern int set_interval(void);
243extern int timer_one_shot(int ticks);
244extern long long disable_timer(void);
245extern void uml_idle_timer(void);
246extern long long os_nsecs(void);
247
248/* skas/mem.c */
249extern long run_syscall_stub(struct mm_id * mm_idp,
250 int syscall, unsigned long *args, long expected,
251 void **addr, int done);
252extern long syscall_stub_data(struct mm_id * mm_idp,
253 unsigned long *data, int data_count,
254 void **addr, void **stub_addr);
255extern int map(struct mm_id * mm_idp, unsigned long virt,
256 unsigned long len, int prot, int phys_fd,
257 unsigned long long offset, int done, void **data);
258extern int unmap(struct mm_id * mm_idp, unsigned long addr, unsigned long len,
259 int done, void **data);
260extern int protect(struct mm_id * mm_idp, unsigned long addr,
261 unsigned long len, unsigned int prot, int done, void **data);
262
263/* skas/process.c */
264extern int is_skas_winch(int pid, int fd, void *data);
265extern int start_userspace(unsigned long stub_stack);
266extern int copy_context_skas0(unsigned long stack, int pid);
267extern void userspace(struct uml_pt_regs *regs);
268extern int map_stub_pages(int fd, unsigned long code, unsigned long data,
269 unsigned long stack);
270extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void));
271extern void switch_threads(jmp_buf *me, jmp_buf *you);
272extern int start_idle_thread(void *stack, jmp_buf *switch_buf);
273extern void initial_thread_cb_skas(void (*proc)(void *),
274 void *arg);
275extern void halt_skas(void);
276extern void reboot_skas(void);
277
278/* irq.c */
279extern int os_waiting_for_events(struct irq_fd *active_fds);
280extern int os_create_pollfd(int fd, int events, void *tmp_pfd, int size_tmpfds);
281extern void os_free_irq_by_cb(int (*test)(struct irq_fd *, void *), void *arg,
282 struct irq_fd *active_fds, struct irq_fd ***last_irq_ptr2);
283extern void os_free_irq_later(struct irq_fd *active_fds,
284 int irq, void *dev_id);
285extern int os_get_pollfd(int i);
286extern void os_set_pollfd(int i, int fd);
287extern void os_set_ioignore(void);
288
289/* sigio.c */
290extern int add_sigio_fd(int fd);
291extern int ignore_sigio_fd(int fd);
292extern void maybe_sigio_broken(int fd, int read);
293extern void sigio_broken(int fd, int read);
294
295/* sys-x86_64/prctl.c */
296extern int os_arch_prctl(int pid, int code, unsigned long *addr);
297
298/* tty.c */
299extern int get_pty(void);
300
301/* sys-$ARCH/task_size.c */
302extern unsigned long os_get_top_address(void);
303
304#endif