VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h@ 33439

Last change on this file since 33439 was 33439, checked in by vboxsync, 14 years ago

IPRT, Linux additions, Shared folders: added support for guest shared folder (thanks Brian Campbell)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.4 KB
Line 
1/* $Id: the-linux-kernel.h 33439 2010-10-25 19:35:58Z vboxsync $ */
2/** @file
3 * IPRT - Include all necessary headers for the Linux kernel.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef ___the_linux_kernel_h
28#define ___the_linux_kernel_h
29
30/*
31 * Include iprt/types.h to install the bool wrappers.
32 * Then use the linux bool type for all the stuff include here.
33 */
34#include <iprt/types.h>
35#define bool linux_bool
36
37#ifndef AUTOCONF_INCLUDED
38# include <linux/autoconf.h>
39#endif
40#include <linux/version.h>
41
42/* We only support 2.4 and 2.6 series kernels */
43#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 4, 0)
44# error We only support 2.4 and 2.6 series kernels
45#endif
46#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 0) && LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
47# error We only support 2.4 and 2.6 series kernels
48#endif
49
50#if defined(CONFIG_MODVERSIONS) && !defined(MODVERSIONS)
51# define MODVERSIONS
52# if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 71)
53# include <linux/modversions.h>
54# endif
55#endif
56#ifndef KBUILD_STR
57# if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 16)
58# define KBUILD_STR(s) s
59# else
60# define KBUILD_STR(s) #s
61# endif
62#endif
63#include <linux/string.h>
64#include <linux/spinlock.h>
65#include <linux/slab.h>
66#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
67# include <linux/semaphore.h>
68#else /* older kernels */
69# include <asm/semaphore.h>
70#endif /* older kernels */
71#include <linux/module.h>
72#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
73# include <linux/moduleparam.h>
74#endif
75#include <linux/kernel.h>
76#include <linux/init.h>
77#include <linux/fs.h>
78#include <linux/namei.h>
79#include <linux/mm.h>
80#include <linux/pagemap.h>
81#include <linux/slab.h>
82#include <linux/time.h>
83#include <linux/sched.h>
84#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 7)
85# include <linux/jiffies.h>
86#endif
87#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 16)
88# include <linux/ktime.h>
89# include <linux/hrtimer.h>
90#endif
91#include <linux/wait.h>
92#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 71)
93# include <linux/cpu.h>
94# include <linux/notifier.h>
95#endif
96/* For the basic additions module */
97#include <linux/pci.h>
98#include <linux/delay.h>
99#include <linux/interrupt.h>
100#include <linux/completion.h>
101#include <linux/compiler.h>
102#ifndef HAVE_UNLOCKED_IOCTL /* linux/fs.h defines this */
103# include <linux/smp_lock.h>
104#endif
105/* For the shared folders module */
106#include <linux/vmalloc.h>
107#define wchar_t linux_wchar_t
108#include <linux/nls.h>
109#undef wchar_t
110#include <asm/mman.h>
111#include <asm/io.h>
112#include <asm/uaccess.h>
113#include <asm/div64.h>
114
115#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
116# ifndef page_to_pfn
117# define page_to_pfn(page) ((page) - mem_map)
118# endif
119#endif
120
121#ifndef DEFINE_WAIT
122# define DEFINE_WAIT(name) DECLARE_WAITQUEUE(name, current)
123#endif
124
125/*
126 * 2.4 / early 2.6 compatibility wrappers
127 */
128#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 7)
129
130# ifndef MAX_JIFFY_OFFSET
131# define MAX_JIFFY_OFFSET ((~0UL >> 1)-1)
132# endif
133
134# if LINUX_VERSION_CODE < KERNEL_VERSION(2, 4, 29) || LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
135
136DECLINLINE(unsigned int) jiffies_to_msecs(unsigned long cJiffies)
137{
138# if HZ <= 1000 && !(1000 % HZ)
139 return (1000 / HZ) * cJiffies;
140# elif HZ > 1000 && !(HZ % 1000)
141 return (cJiffies + (HZ / 1000) - 1) / (HZ / 1000);
142# else
143 return (cJiffies * 1000) / HZ;
144# endif
145}
146
147DECLINLINE(unsigned long) msecs_to_jiffies(unsigned int cMillies)
148{
149# if HZ > 1000
150 if (cMillies > jiffies_to_msecs(MAX_JIFFY_OFFSET))
151 return MAX_JIFFY_OFFSET;
152# endif
153# if HZ <= 1000 && !(1000 % HZ)
154 return (cMillies + (1000 / HZ) - 1) / (1000 / HZ);
155# elif HZ > 1000 && !(HZ % 1000)
156 return cMillies * (HZ / 1000);
157# else
158 return (cMillies * HZ + 999) / 1000;
159# endif
160}
161
162# endif /* < 2.4.29 || >= 2.6.0 */
163
164#endif /* < 2.6.7 */
165
166/*
167 * 2.4 compatibility wrappers
168 */
169#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
170
171# define prepare_to_wait(q, wait, state) \
172 do { \
173 add_wait_queue(q, wait); \
174 set_current_state(state); \
175 } while (0)
176
177# define after_wait(wait) \
178 do { \
179 list_del_init(&(wait)->task_list); \
180 } while (0)
181
182# define finish_wait(q, wait) \
183 do { \
184 set_current_state(TASK_RUNNING); \
185 remove_wait_queue(q, wait); \
186 } while (0)
187
188#else /* >= 2.6.0 */
189
190# define after_wait(wait) do {} while (0)
191
192#endif /* >= 2.6.0 */
193
194/** @def TICK_NSEC
195 * The time between ticks in nsec */
196#ifndef TICK_NSEC
197# define TICK_NSEC (1000000000UL / HZ)
198#endif
199
200/*
201 * This sucks soooo badly on x86! Why don't they export __PAGE_KERNEL_EXEC so PAGE_KERNEL_EXEC would be usable?
202 */
203#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 8) && defined(RT_ARCH_AMD64)
204# define MY_PAGE_KERNEL_EXEC PAGE_KERNEL_EXEC
205#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 8) && defined(PAGE_KERNEL_EXEC) && defined(CONFIG_X86_PAE)
206# ifdef __PAGE_KERNEL_EXEC
207 /* >= 2.6.27 */
208# define MY_PAGE_KERNEL_EXEC __pgprot(cpu_has_pge ? __PAGE_KERNEL_EXEC | _PAGE_GLOBAL : __PAGE_KERNEL_EXEC)
209# else
210# define MY_PAGE_KERNEL_EXEC __pgprot(cpu_has_pge ? _PAGE_KERNEL_EXEC | _PAGE_GLOBAL : _PAGE_KERNEL_EXEC)
211# endif
212#else
213# define MY_PAGE_KERNEL_EXEC PAGE_KERNEL
214#endif
215
216
217/*
218 * The redhat hack section.
219 * - The current hacks are for 2.4.21-15.EL only.
220 */
221#ifndef NO_REDHAT_HACKS
222/* accounting. */
223# if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
224# ifdef VM_ACCOUNT
225# define MY_DO_MUNMAP(a,b,c) do_munmap(a, b, c, 0) /* should it be 1 or 0? */
226# endif
227# endif
228
229/* backported remap_page_range. */
230# if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
231# include <asm/tlb.h>
232# ifdef tlb_vma /* probably not good enough... */
233# define HAVE_26_STYLE_REMAP_PAGE_RANGE 1
234# endif
235# endif
236
237# ifndef RT_ARCH_AMD64
238/* In 2.6.9-22.ELsmp we have to call change_page_attr() twice when changing
239 * the page attributes from PAGE_KERNEL to something else, because there appears
240 * to be a bug in one of the many patches that redhat applied.
241 * It should be safe to do this on less buggy linux kernels too. ;-)
242 */
243# define MY_CHANGE_PAGE_ATTR(pPages, cPages, prot) \
244 do { \
245 if (pgprot_val(prot) != pgprot_val(PAGE_KERNEL)) \
246 change_page_attr(pPages, cPages, prot); \
247 change_page_attr(pPages, cPages, prot); \
248 } while (0)
249# endif /* !RT_ARCH_AMD64 */
250#endif /* !NO_REDHAT_HACKS */
251
252#ifndef MY_DO_MUNMAP
253# define MY_DO_MUNMAP(a,b,c) do_munmap(a, b, c)
254#endif
255
256#ifndef MY_CHANGE_PAGE_ATTR
257# ifdef RT_ARCH_AMD64 /** @todo This is a cheap hack, but it'll get around that 'else BUG();' in __change_page_attr(). */
258# define MY_CHANGE_PAGE_ATTR(pPages, cPages, prot) \
259 do { \
260 change_page_attr(pPages, cPages, PAGE_KERNEL_NOCACHE); \
261 change_page_attr(pPages, cPages, prot); \
262 } while (0)
263# else
264# define MY_CHANGE_PAGE_ATTR(pPages, cPages, prot) change_page_attr(pPages, cPages, prot)
265# endif
266#endif
267
268#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25)
269# define MY_SET_PAGES_EXEC(pPages, cPages) set_pages_x(pPages, cPages)
270# define MY_SET_PAGES_NOEXEC(pPages, cPages) set_pages_nx(pPages, cPages)
271#else
272# define MY_SET_PAGES_EXEC(pPages, cPages) \
273 do { \
274 if (pgprot_val(MY_PAGE_KERNEL_EXEC) != pgprot_val(PAGE_KERNEL)) \
275 MY_CHANGE_PAGE_ATTR(pPages, cPages, MY_PAGE_KERNEL_EXEC); \
276 } while (0)
277# define MY_SET_PAGES_NOEXEC(pPages, cPages) \
278 do { \
279 if (pgprot_val(MY_PAGE_KERNEL_EXEC) != pgprot_val(PAGE_KERNEL)) \
280 MY_CHANGE_PAGE_ATTR(pPages, cPages, PAGE_KERNEL); \
281 } while (0)
282#endif
283
284/** @def ONE_MSEC_IN_JIFFIES
285 * The number of jiffies that make up 1 millisecond. Must be at least 1! */
286#if HZ <= 1000
287# define ONE_MSEC_IN_JIFFIES 1
288#elif !(HZ % 1000)
289# define ONE_MSEC_IN_JIFFIES (HZ / 1000)
290#else
291# define ONE_MSEC_IN_JIFFIES ((HZ + 999) / 1000)
292# error "HZ is not a multiple of 1000, the GIP stuff won't work right!"
293#endif
294
295/*
296 * Stop using the linux bool type.
297 */
298#undef bool
299
300/*
301 * There are post-2.6.24 kernels (confusingly with unchanged version number)
302 * which eliminate macros which were marked as deprecated.
303 */
304#ifndef __attribute_used__
305#define __attribute_used__ __used
306#endif
307
308/**
309 * Hack for shortening pointers on linux so we can stuff more stuff into the
310 * task_struct::comm field. This is used by the semaphore code but put here
311 * because we don't have any better place atm. Don't use outside IPRT, please.
312 */
313#ifdef RT_ARCH_AMD64
314# define IPRT_DEBUG_SEMS_ADDRESS(addr) ( ((long)(addr) & (long)~UINT64_C(0xfffffff000000000)) )
315#else
316# define IPRT_DEBUG_SEMS_ADDRESS(addr) ( (long)(addr) )
317#endif
318
319/**
320 * Puts semaphore info into the task_struct::comm field if IPRT_DEBUG_SEMS is
321 * defined.
322 */
323#ifdef IPRT_DEBUG_SEMS
324# define IPRT_DEBUG_SEMS_STATE(pThis, chState) \
325 snprintf(current->comm, sizeof(current->comm), "%c%lx", (chState), IPRT_DEBUG_SEMS_ADDRESS(pThis));
326#else
327# define IPRT_DEBUG_SEMS_STATE(pThis, chState) do { } while (0)
328#endif
329
330/**
331 * Puts semaphore info into the task_struct::comm field if IPRT_DEBUG_SEMS is
332 * defined.
333 */
334#ifdef IPRT_DEBUG_SEMS
335# define IPRT_DEBUG_SEMS_STATE_RC(pThis, chState, rc) \
336 snprintf(current->comm, sizeof(current->comm), "%c%lx:%d", (chState), IPRT_DEBUG_SEMS_ADDRESS(pThis), rc);
337#else
338# define IPRT_DEBUG_SEMS_STATE_RC(pThis, chState, rc) do { } while (0)
339#endif
340
341/*
342 * There are some conflicting defines in iprt/param.h, sort them out here.
343 */
344#ifndef ___iprt_param_h
345# undef PAGE_SIZE
346# undef PAGE_OFFSET_MASK
347# include <iprt/param.h>
348#endif
349
350/*
351 * Some global indicator macros.
352 */
353/** @def IPRT_LINUX_HAS_HRTIMER
354 * Whether the kernel support high resolution timers (Linux kernel versions
355 * 2.6.28 and later (hrtimer_add_expires_ns() & schedule_hrtimeout). */
356#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 28)
357# define IPRT_LINUX_HAS_HRTIMER
358#endif
359
360
361#endif
362
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette