vm: fix potential null deref
[minix.git] / kernel / proto.h
blob15d761cde5a3eaa741f0823ec273c7be27aab98a
1 /* Function prototypes. */
3 /* FIXME this is a hack how to avoid inclusion conflicts */
4 #ifdef __kernel__
6 #ifndef PROTO_H
7 #define PROTO_H
9 #include <minix/safecopies.h>
10 #include <machine/archtypes.h>
11 #include <a.out.h>
13 /* Struct declarations. */
14 struct proc;
15 struct timer;
17 /* clock.c */
18 clock_t get_uptime(void);
19 void set_timer(struct timer *tp, clock_t t, tmr_func_t f);
20 void reset_timer(struct timer *tp);
21 void ser_dump_proc(void);
23 void cycles_accounting_init(void);
25 * This functions start and stop accounting for process, kernel or idle cycles.
26 * It inherently have to account for some kernel cycles for process too,
27 * therefore it should be called asap after trapping to kernel and as late as
28 * possible before returning to userspace. These function is architecture
29 * dependent
31 void context_stop(struct proc * p);
32 /* this is a wrapper to make calling it from assembly easier */
33 void context_stop_idle(void);
34 int restore_fpu(struct proc *);
35 void save_fpu(struct proc *);
36 void save_local_fpu(struct proc *, int retain);
37 void fpu_sigcontext(struct proc *, struct sigframe *fr, struct
38 sigcontext *sc);
40 /* main.c */
41 #ifndef UNPAGED
42 #define kmain __k_unpaged_kmain
43 #endif
44 void kmain(kinfo_t *cbi);
45 void prepare_shutdown(int how);
46 __dead void minix_shutdown(struct timer *tp);
47 void bsp_finish_booting(void);
49 /* proc.c */
51 int do_ipc(reg_t r1, reg_t r2, reg_t r3);
52 void proc_init(void);
53 int cancel_async(struct proc *src, struct proc *dst);
54 int has_pending_notify(struct proc * caller, int src_p);
55 int has_pending_asend(struct proc * caller, int src_p);
56 void unset_notify_pending(struct proc * caller, int src_p);
57 int mini_notify(const struct proc *src, endpoint_t dst);
58 void enqueue(struct proc *rp);
59 void dequeue(struct proc *rp);
60 void switch_to_user(void);
61 void arch_proc_reset(struct proc *rp);
62 void arch_proc_setcontext(struct proc *rp, struct stackframe_s *state, int user);
63 struct proc * arch_finish_switch_to_user(void);
64 struct proc *endpoint_lookup(endpoint_t ep);
65 #if DEBUG_ENABLE_IPC_WARNINGS
66 int isokendpt_f(const char *file, int line, endpoint_t e, int *p, int
67 f);
68 #define isokendpt_d(e, p, f) isokendpt_f(__FILE__, __LINE__, (e), (p), (f))
69 #else
70 int isokendpt_f(endpoint_t e, int *p, int f);
71 #define isokendpt_d(e, p, f) isokendpt_f((e), (p), (f))
72 #endif
73 void proc_no_time(struct proc *p);
74 void reset_proc_accounting(struct proc *p);
75 void flag_account(struct proc *p, int flag);
76 int try_deliver_senda(struct proc *caller_ptr, asynmsg_t *table, size_t
77 size);
79 /* start.c */
80 void cstart();
81 char *env_get(const char *key);
83 /* system.c */
84 int get_priv(register struct proc *rc, int proc_type);
85 void set_sendto_bit(const struct proc *rc, int id);
86 void unset_sendto_bit(const struct proc *rc, int id);
87 void fill_sendto_mask(const struct proc *rc, sys_map_t *map);
88 int send_sig(endpoint_t proc_nr, int sig_nr);
89 void cause_sig(proc_nr_t proc_nr, int sig_nr);
90 void sig_delay_done(struct proc *rp);
91 void kernel_call(message *m_user, struct proc * caller);
92 void system_init(void);
93 void clear_endpoint(struct proc *rc);
94 void clear_ipc_refs(struct proc *rc, int caller_ret);
95 void kernel_call_resume(struct proc *p);
96 int sched_proc(struct proc *rp, int priority, int quantum, int cpu);
98 /* system/do_vtimer.c */
99 void vtimer_check(struct proc *rp);
101 /* interrupt.c */
102 void put_irq_handler(irq_hook_t *hook, int irq, irq_handler_t handler);
103 void rm_irq_handler(const irq_hook_t *hook);
104 void enable_irq(const irq_hook_t *hook);
105 int disable_irq(const irq_hook_t *hook);
107 void interrupts_enable(void);
108 void interrupts_disable(void);
110 /* debug.c */
111 int runqueues_ok(void);
112 #ifndef CONFIG_SMP
113 #define runqueues_ok_local runqueues_ok
114 #else
115 #define runqueues_ok_local() runqueues_ok_cpu(cpuid)
116 int runqueues_ok_cpu(unsigned cpu);
117 #endif
118 char *rtsflagstr(u32_t flags);
119 char *miscflagstr(u32_t flags);
120 char *schedulerstr(struct proc *scheduler);
121 /* prints process information */
122 void print_proc(struct proc *pp);
123 /* prints the given process and recursively all processes it depends on */
124 void print_proc_recursive(struct proc *pp);
125 #if DEBUG_IPC_HOOK
126 void hook_ipc_msgrecv(message *msg, struct proc *src, struct proc *dst);
127 void hook_ipc_msgsend(message *msg, struct proc *src, struct proc *dst);
128 void hook_ipc_msgkcall(message *msg, struct proc *proc);
129 void hook_ipc_msgkresult(message *msg, struct proc *proc);
130 void hook_ipc_clear(struct proc *proc);
131 #endif
133 /* system/do_safemap.c */
134 int map_invoke_vm(struct proc * caller, int req_type, endpoint_t end_d,
135 vir_bytes off_d, endpoint_t end_s, vir_bytes
136 off_s, size_t size, int flag);
138 /* system/do_safecopy.c */
139 int verify_grant(endpoint_t, endpoint_t, cp_grant_id_t, vir_bytes, int,
140 vir_bytes, vir_bytes *, endpoint_t *);
142 /* system/do_sysctl.c */
143 int do_sysctl(struct proc * caller, message *m);
145 #if SPROFILE
146 /* profile.c */
147 void init_profile_clock(u32_t);
148 void stop_profile_clock(void);
149 #endif
151 /* functions defined in architecture-dependent files. */
152 void prot_init();
153 void arch_post_init();
154 void arch_set_secondary_ipc_return(struct proc *, u32_t val);
155 phys_bytes phys_copy(phys_bytes source, phys_bytes dest, phys_bytes
156 count);
157 void phys_copy_fault(void);
158 void phys_copy_fault_in_kernel(void);
159 void memset_fault(void);
160 void memset_fault_in_kernel(void);
161 #define virtual_copy(src, dst, bytes) \
162 virtual_copy_f(NULL, src, dst, bytes, 0)
163 #define virtual_copy_vmcheck(caller, src, dst, bytes) \
164 virtual_copy_f(caller, src, dst, bytes, 1)
165 int virtual_copy_f(struct proc * caller, struct vir_addr *src, struct
166 vir_addr *dst, vir_bytes bytes, int vmcheck);
167 int data_copy(endpoint_t from, vir_bytes from_addr, endpoint_t to,
168 vir_bytes to_addr, size_t bytes);
169 int data_copy_vmcheck(struct proc *, endpoint_t from, vir_bytes
170 from_addr, endpoint_t to, vir_bytes to_addr, size_t bytes);
171 phys_bytes umap_virtual(struct proc* rp, int seg, vir_bytes vir_addr,
172 vir_bytes bytes);
173 phys_bytes seg2phys(u16_t);
174 int vm_memset(struct proc *caller, endpoint_t who, phys_bytes dst,
175 int pattern, phys_bytes count);
176 int intr_init(int);
177 void halt_cpu(void);
178 void arch_init(void);
179 void arch_boot_proc(struct boot_image *b, struct proc *p);
180 void cpu_identify(void);
181 /* arch dependent FPU initialization per CPU */
182 void fpu_init(void);
183 /* returns true if pfu is present and initialized */
184 int is_fpu(void);
185 void ser_putc(char);
186 __dead void arch_shutdown(int);
187 void restore_user_context(struct proc * p);
188 void read_tsc(u32_t *high, u32_t *low);
189 int arch_init_profile_clock(u32_t freq);
190 void arch_stop_profile_clock(void);
191 void arch_ack_profile_clock(void);
192 void do_ser_debug(void);
193 int arch_get_params(char *parm, int max);
194 void memory_init(void);
195 void mem_clear_mapcache(void);
196 void arch_proc_init(struct proc *pr, u32_t, u32_t, char *);
197 int arch_do_vmctl(message *m_ptr, struct proc *p);
198 int vm_contiguous(const struct proc *targetproc, vir_bytes vir_buf,
199 size_t count);
200 void proc_stacktrace(struct proc *proc);
201 int vm_lookup(const struct proc *proc, vir_bytes virtual, phys_bytes
202 *result, u32_t *ptent);
203 size_t vm_lookup_range(const struct proc *proc,
204 vir_bytes vir_addr, phys_bytes *phys_addr, size_t bytes);
205 void delivermsg(struct proc *target);
206 void arch_do_syscall(struct proc *proc);
207 int arch_phys_map(int index, phys_bytes *addr, phys_bytes *len, int
208 *flags);
209 int arch_phys_map_reply(int index, vir_bytes addr);
210 reg_t arch_get_sp(struct proc *p);
211 int arch_enable_paging(struct proc * caller);
212 int vm_check_range(struct proc *caller,
213 struct proc *target, vir_bytes vir_addr, size_t bytes);
215 int copy_msg_from_user(message * user_mbuf, message * dst);
216 int copy_msg_to_user(message * src, message * user_mbuf);
217 void switch_address_space(struct proc * p);
218 void release_address_space(struct proc *pr);
220 void enable_fpu_exception(void);
221 void disable_fpu_exception(void);
222 void release_fpu(struct proc * p);
223 void arch_pause(void);
224 short cpu_load(void);
225 void busy_delay_ms(int ms);
227 /* utility.c */
228 void cpu_print_freq(unsigned cpu);
229 #endif /* __kernel__ */
231 #endif /* PROTO_H */