xref: /freebsd/sys/i386/linux/linux.h (revision b3aaa0cc21c63d388230c7ef2a80abd631ff20d5)
1 /*-
2  * Copyright (c) 1994-1996 S�ren Schmidt
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer
10  *    in this position and unchanged.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30 
31 #ifndef _I386_LINUX_H_
32 #define	_I386_LINUX_H_
33 
34 #include <sys/signal.h>	/* for sigval union */
35 
36 #include <i386/linux/linux_syscall.h>
37 
38 /*
39  * debugging support
40  */
41 extern u_char linux_debug_map[];
42 #define	ldebug(name)	isclr(linux_debug_map, LINUX_SYS_linux_ ## name)
43 #define	ARGS(nm, fmt)	"linux(%ld): "#nm"("fmt")\n", (long)td->td_proc->p_pid
44 #define	LMSG(fmt)	"linux(%ld): "fmt"\n", (long)td->td_proc->p_pid
45 
46 #ifdef MALLOC_DECLARE
47 MALLOC_DECLARE(M_LINUX);
48 #endif
49 
50 #define	PTRIN(v)	(void *)(v)
51 #define	PTROUT(v)	(l_uintptr_t)(v)
52 
53 /*
54  * Provide a separate set of types for the Linux types.
55  */
56 typedef int		l_int;
57 typedef int32_t		l_long;
58 typedef int64_t		l_longlong;
59 typedef short		l_short;
60 typedef unsigned int	l_uint;
61 typedef uint32_t	l_ulong;
62 typedef uint64_t	l_ulonglong;
63 typedef unsigned short	l_ushort;
64 
65 typedef char		*l_caddr_t;
66 typedef l_ulong		l_uintptr_t;
67 typedef l_long		l_clock_t;
68 typedef l_int		l_daddr_t;
69 typedef l_ushort	l_dev_t;
70 typedef l_uint		l_gid_t;
71 typedef l_ushort	l_gid16_t;
72 typedef l_ulong		l_ino_t;
73 typedef l_int		l_key_t;
74 typedef l_longlong	l_loff_t;
75 typedef l_ushort	l_mode_t;
76 typedef l_long		l_off_t;
77 typedef l_int		l_pid_t;
78 typedef l_uint		l_size_t;
79 typedef l_long		l_suseconds_t;
80 typedef l_long		l_time_t;
81 typedef l_uint		l_uid_t;
82 typedef l_ushort	l_uid16_t;
83 typedef l_int		l_timer_t;
84 typedef l_int		l_mqd_t;
85 
86 typedef struct {
87 	l_int		val[2];
88 } l_fsid_t;
89 
90 typedef struct {
91 	l_time_t	tv_sec;
92 	l_suseconds_t	tv_usec;
93 } l_timeval;
94 
95 #define	l_fd_set	fd_set
96 
97 /*
98  * Miscellaneous
99  */
100 #define	LINUX_NAME_MAX		255
101 #define	LINUX_MAX_UTSNAME	65
102 
103 #define	LINUX_CTL_MAXNAME	10
104 
105 struct l___sysctl_args
106 {
107 	l_int		*name;
108 	l_int		nlen;
109 	void		*oldval;
110 	l_size_t	*oldlenp;
111 	void		*newval;
112 	l_size_t	newlen;
113 	l_ulong		__spare[4];
114 };
115 
116 /* Scheduling policies */
117 #define	LINUX_SCHED_OTHER	0
118 #define	LINUX_SCHED_FIFO	1
119 #define	LINUX_SCHED_RR		2
120 
121 /* Resource limits */
122 #define	LINUX_RLIMIT_CPU	0
123 #define	LINUX_RLIMIT_FSIZE	1
124 #define	LINUX_RLIMIT_DATA	2
125 #define	LINUX_RLIMIT_STACK	3
126 #define	LINUX_RLIMIT_CORE	4
127 #define	LINUX_RLIMIT_RSS	5
128 #define	LINUX_RLIMIT_NPROC	6
129 #define	LINUX_RLIMIT_NOFILE	7
130 #define	LINUX_RLIMIT_MEMLOCK	8
131 #define	LINUX_RLIMIT_AS		9	/* Address space limit */
132 
133 #define	LINUX_RLIM_NLIMITS	10
134 
135 struct l_rlimit {
136 	l_ulong rlim_cur;
137 	l_ulong rlim_max;
138 };
139 
140 /* mmap options */
141 #define	LINUX_MAP_SHARED	0x0001
142 #define	LINUX_MAP_PRIVATE	0x0002
143 #define	LINUX_MAP_FIXED		0x0010
144 #define	LINUX_MAP_ANON		0x0020
145 #define	LINUX_MAP_GROWSDOWN	0x0100
146 
147 struct l_mmap_argv {
148 	l_uintptr_t	addr;
149 	l_size_t	len;
150 	l_int		prot;
151 	l_int		flags;
152 	l_int		fd;
153 	l_off_t		pgoff;
154 } __packed;
155 
156 /*
157  * stat family of syscalls
158  */
159 struct l_timespec {
160 	l_time_t	tv_sec;
161 	l_long		tv_nsec;
162 };
163 
164 struct l_newstat {
165 	l_ushort	st_dev;
166 	l_ushort	__pad1;
167 	l_ulong		st_ino;
168 	l_ushort	st_mode;
169 	l_ushort	st_nlink;
170 	l_ushort	st_uid;
171 	l_ushort	st_gid;
172 	l_ushort	st_rdev;
173 	l_ushort	__pad2;
174 	l_ulong		st_size;
175 	l_ulong		st_blksize;
176 	l_ulong		st_blocks;
177 	struct l_timespec	st_atimespec;
178 	struct l_timespec	st_mtimespec;
179 	struct l_timespec	st_ctimespec;
180 	l_ulong		__unused4;
181 	l_ulong		__unused5;
182 };
183 
184 struct l_stat {
185 	l_ushort	st_dev;
186 	l_ulong		st_ino;
187 	l_ushort	st_mode;
188 	l_ushort	st_nlink;
189 	l_ushort	st_uid;
190 	l_ushort	st_gid;
191 	l_ushort	st_rdev;
192 	l_long		st_size;
193 	struct l_timespec	st_atimespec;
194 	struct l_timespec	st_mtimespec;
195 	struct l_timespec	st_ctimespec;
196 	l_long		st_blksize;
197 	l_long		st_blocks;
198 	l_ulong		st_flags;
199 	l_ulong		st_gen;
200 };
201 
202 struct l_stat64 {
203 	l_ushort	st_dev;
204 	u_char		__pad0[10];
205 	l_ulong		__st_ino;
206 	l_uint		st_mode;
207 	l_uint		st_nlink;
208 	l_ulong		st_uid;
209 	l_ulong		st_gid;
210 	l_ushort	st_rdev;
211 	u_char		__pad3[10];
212 	l_longlong	st_size;
213 	l_ulong		st_blksize;
214 	l_ulong		st_blocks;
215 	l_ulong		__pad4;
216 	struct l_timespec	st_atimespec;
217 	struct l_timespec	st_mtimespec;
218 	struct l_timespec	st_ctimespec;
219 	l_ulonglong	st_ino;
220 };
221 
222 struct l_statfs64 {
223         l_int           f_type;
224         l_int           f_bsize;
225         uint64_t        f_blocks;
226         uint64_t        f_bfree;
227         uint64_t        f_bavail;
228         uint64_t        f_files;
229         uint64_t        f_ffree;
230         l_fsid_t        f_fsid;
231         l_int           f_namelen;
232         l_int           f_spare[6];
233 };
234 
235 struct l_new_utsname {
236 	char	sysname[LINUX_MAX_UTSNAME];
237 	char	nodename[LINUX_MAX_UTSNAME];
238 	char	release[LINUX_MAX_UTSNAME];
239 	char	version[LINUX_MAX_UTSNAME];
240 	char	machine[LINUX_MAX_UTSNAME];
241 	char	domainname[LINUX_MAX_UTSNAME];
242 };
243 
244 /*
245  * Signalling
246  */
247 #define	LINUX_SIGHUP		1
248 #define	LINUX_SIGINT		2
249 #define	LINUX_SIGQUIT		3
250 #define	LINUX_SIGILL		4
251 #define	LINUX_SIGTRAP		5
252 #define	LINUX_SIGABRT		6
253 #define	LINUX_SIGIOT		LINUX_SIGABRT
254 #define	LINUX_SIGBUS		7
255 #define	LINUX_SIGFPE		8
256 #define	LINUX_SIGKILL		9
257 #define	LINUX_SIGUSR1		10
258 #define	LINUX_SIGSEGV		11
259 #define	LINUX_SIGUSR2		12
260 #define	LINUX_SIGPIPE		13
261 #define	LINUX_SIGALRM		14
262 #define	LINUX_SIGTERM		15
263 #define	LINUX_SIGSTKFLT		16
264 #define	LINUX_SIGCHLD		17
265 #define	LINUX_SIGCONT		18
266 #define	LINUX_SIGSTOP		19
267 #define	LINUX_SIGTSTP		20
268 #define	LINUX_SIGTTIN		21
269 #define	LINUX_SIGTTOU		22
270 #define	LINUX_SIGURG		23
271 #define	LINUX_SIGXCPU		24
272 #define	LINUX_SIGXFSZ		25
273 #define	LINUX_SIGVTALRM		26
274 #define	LINUX_SIGPROF		27
275 #define	LINUX_SIGWINCH		28
276 #define	LINUX_SIGIO		29
277 #define	LINUX_SIGPOLL		LINUX_SIGIO
278 #define	LINUX_SIGPWR		30
279 #define	LINUX_SIGSYS		31
280 
281 #define	LINUX_SIGTBLSZ		31
282 #define	LINUX_NSIG_WORDS	2
283 #define	LINUX_NBPW		32
284 #define	LINUX_NSIG		(LINUX_NBPW * LINUX_NSIG_WORDS)
285 
286 /* sigaction flags */
287 #define	LINUX_SA_NOCLDSTOP	0x00000001
288 #define	LINUX_SA_NOCLDWAIT	0x00000002
289 #define	LINUX_SA_SIGINFO	0x00000004
290 #define	LINUX_SA_RESTORER	0x04000000
291 #define	LINUX_SA_ONSTACK	0x08000000
292 #define	LINUX_SA_RESTART	0x10000000
293 #define	LINUX_SA_INTERRUPT	0x20000000
294 #define	LINUX_SA_NOMASK		0x40000000
295 #define	LINUX_SA_ONESHOT	0x80000000
296 
297 /* sigprocmask actions */
298 #define	LINUX_SIG_BLOCK		0
299 #define	LINUX_SIG_UNBLOCK	1
300 #define	LINUX_SIG_SETMASK	2
301 
302 /* sigset_t macros */
303 #define	LINUX_SIGEMPTYSET(set)		(set).__bits[0] = (set).__bits[1] = 0
304 #define	LINUX_SIGISMEMBER(set, sig)	SIGISMEMBER(set, sig)
305 #define	LINUX_SIGADDSET(set, sig)	SIGADDSET(set, sig)
306 
307 /* sigaltstack */
308 #define	LINUX_MINSIGSTKSZ	2048
309 #define	LINUX_SS_ONSTACK	1
310 #define	LINUX_SS_DISABLE	2
311 
312 int linux_to_bsd_sigaltstack(int lsa);
313 int bsd_to_linux_sigaltstack(int bsa);
314 
315 typedef void	(*l_handler_t)(l_int);
316 typedef l_ulong	l_osigset_t;
317 
318 typedef struct {
319 	l_uint	__bits[LINUX_NSIG_WORDS];
320 } l_sigset_t;
321 
322 typedef struct {
323 	l_handler_t	lsa_handler;
324 	l_osigset_t	lsa_mask;
325 	l_ulong		lsa_flags;
326 	void	(*lsa_restorer)(void);
327 } l_osigaction_t;
328 
329 typedef struct {
330 	l_handler_t	lsa_handler;
331 	l_ulong		lsa_flags;
332 	void	(*lsa_restorer)(void);
333 	l_sigset_t	lsa_mask;
334 } l_sigaction_t;
335 
336 typedef struct {
337 	void		*ss_sp;
338 	l_int		ss_flags;
339 	l_size_t	ss_size;
340 } l_stack_t;
341 
342 /* The Linux sigcontext, pretty much a standard 386 trapframe. */
343 struct l_sigcontext {
344 	l_int		sc_gs;
345 	l_int		sc_fs;
346 	l_int		sc_es;
347 	l_int		sc_ds;
348 	l_int		sc_edi;
349 	l_int		sc_esi;
350 	l_int		sc_ebp;
351 	l_int		sc_esp;
352 	l_int		sc_ebx;
353 	l_int		sc_edx;
354 	l_int		sc_ecx;
355 	l_int		sc_eax;
356 	l_int		sc_trapno;
357 	l_int		sc_err;
358 	l_int		sc_eip;
359 	l_int		sc_cs;
360 	l_int		sc_eflags;
361 	l_int		sc_esp_at_signal;
362 	l_int		sc_ss;
363 	l_int		sc_387;
364 	l_int		sc_mask;
365 	l_int		sc_cr2;
366 };
367 
368 struct l_ucontext {
369 	l_ulong		uc_flags;
370 	void		*uc_link;
371 	l_stack_t	uc_stack;
372 	struct l_sigcontext	uc_mcontext;
373 	l_sigset_t	uc_sigmask;
374 };
375 
376 #define	LINUX_SI_MAX_SIZE	128
377 #define	LINUX_SI_PAD_SIZE	((LINUX_SI_MAX_SIZE/sizeof(l_int)) - 3)
378 
379 typedef union l_sigval {
380 	l_int		sival_int;
381 	l_uintptr_t	sival_ptr;
382 } l_sigval_t;
383 
384 typedef struct l_siginfo {
385 	l_int		lsi_signo;
386 	l_int		lsi_errno;
387 	l_int		lsi_code;
388 	union {
389 		l_int	_pad[LINUX_SI_PAD_SIZE];
390 
391 		struct {
392 			l_pid_t		_pid;
393 			l_uid_t		_uid;
394 		} _kill;
395 
396 		struct {
397 			l_timer_t	_tid;
398 			l_int		_overrun;
399 			char		_pad[sizeof(l_uid_t) - sizeof(l_int)];
400 			l_sigval_t	_sigval;
401 			l_int		_sys_private;
402 		} _timer;
403 
404 		struct {
405 			l_pid_t		_pid;		/* sender's pid */
406 			l_uid_t		_uid;		/* sender's uid */
407 			l_sigval_t	_sigval;
408 		} _rt;
409 
410 		struct {
411 			l_pid_t		_pid;		/* which child */
412 			l_uid_t		_uid;		/* sender's uid */
413 			l_int		_status;	/* exit code */
414 			l_clock_t	_utime;
415 			l_clock_t	_stime;
416 		} _sigchld;
417 
418 		struct {
419 			l_uintptr_t	_addr;	/* Faulting insn/memory ref. */
420 		} _sigfault;
421 
422 		struct {
423 			l_long		_band;	/* POLL_IN,POLL_OUT,POLL_MSG */
424 			l_int		_fd;
425 		} _sigpoll;
426 	} _sifields;
427 } l_siginfo_t;
428 
429 #define	lsi_pid		_sifields._kill._pid
430 #define	lsi_uid		_sifields._kill._uid
431 #define	lsi_tid		_sifields._timer._tid
432 #define	lsi_overrun	_sifields._timer._overrun
433 #define	lsi_sys_private	_sifields._timer._sys_private
434 #define	lsi_status	_sifields._sigchld._status
435 #define	lsi_utime	_sifields._sigchld._utime
436 #define	lsi_stime	_sifields._sigchld._stime
437 #define	lsi_value	_sifields._rt._sigval
438 #define	lsi_int		_sifields._rt._sigval.sival_int
439 #define	lsi_ptr		_sifields._rt._sigval.sival_ptr
440 #define	lsi_addr	_sifields._sigfault._addr
441 #define	lsi_band	_sifields._sigpoll._band
442 #define	lsi_fd		_sifields._sigpoll._fd
443 
444 struct l_fpreg {
445 	u_int16_t	significand[4];
446 	u_int16_t	exponent;
447 };
448 
449 struct l_fpxreg {
450 	u_int16_t	significand[4];
451 	u_int16_t	exponent;
452 	u_int16_t	padding[3];
453 };
454 
455 struct l_xmmreg {
456 	u_int32_t	element[4];
457 };
458 
459 struct l_fpstate {
460 	/* Regular FPU environment */
461 	u_int32_t		cw;
462 	u_int32_t		sw;
463 	u_int32_t		tag;
464 	u_int32_t		ipoff;
465 	u_int32_t		cssel;
466 	u_int32_t		dataoff;
467 	u_int32_t		datasel;
468 	struct l_fpreg		_st[8];
469 	u_int16_t		status;
470 	u_int16_t		magic;		/* 0xffff = regular FPU data */
471 
472 	/* FXSR FPU environment */
473 	u_int32_t		_fxsr_env[6];	/* env is ignored. */
474 	u_int32_t		mxcsr;
475 	u_int32_t		reserved;
476 	struct l_fpxreg		_fxsr_st[8];	/* reg data is ignored. */
477 	struct l_xmmreg		_xmm[8];
478 	u_int32_t		padding[56];
479 };
480 
481 /*
482  * We make the stack look like Linux expects it when calling a signal
483  * handler, but use the BSD way of calling the handler and sigreturn().
484  * This means that we need to pass the pointer to the handler too.
485  * It is appended to the frame to not interfere with the rest of it.
486  */
487 struct l_sigframe {
488 	l_int			sf_sig;
489 	struct l_sigcontext	sf_sc;
490 	struct l_fpstate	sf_fpstate;
491 	l_uint			sf_extramask[LINUX_NSIG_WORDS-1];
492 	l_handler_t		sf_handler;
493 };
494 
495 struct l_rt_sigframe {
496 	l_int			sf_sig;
497 	l_siginfo_t 		*sf_siginfo;
498 	struct l_ucontext	*sf_ucontext;
499 	l_siginfo_t		sf_si;
500 	struct l_ucontext 	sf_sc;
501 	l_handler_t 		sf_handler;
502 };
503 
504 extern int bsd_to_linux_signal[];
505 extern int linux_to_bsd_signal[];
506 extern struct sysentvec linux_sysvec;
507 extern struct sysentvec elf_linux_sysvec;
508 
509 /*
510  * Pluggable ioctl handlers
511  */
512 struct linux_ioctl_args;
513 struct thread;
514 
515 typedef int linux_ioctl_function_t(struct thread *, struct linux_ioctl_args *);
516 
517 struct linux_ioctl_handler {
518 	linux_ioctl_function_t *func;
519 	int	low, high;
520 };
521 
522 int	linux_ioctl_register_handler(struct linux_ioctl_handler *h);
523 int	linux_ioctl_unregister_handler(struct linux_ioctl_handler *h);
524 
525 /*
526  * open/fcntl flags
527  */
528 #define	LINUX_O_RDONLY		00000000
529 #define	LINUX_O_WRONLY		00000001
530 #define	LINUX_O_RDWR		00000002
531 #define	LINUX_O_ACCMODE		00000003
532 #define	LINUX_O_CREAT		00000100
533 #define	LINUX_O_EXCL		00000200
534 #define	LINUX_O_NOCTTY		00000400
535 #define	LINUX_O_TRUNC		00001000
536 #define	LINUX_O_APPEND		00002000
537 #define	LINUX_O_NONBLOCK	00004000
538 #define	LINUX_O_NDELAY		LINUX_O_NONBLOCK
539 #define	LINUX_O_SYNC		00010000
540 #define	LINUX_FASYNC		00020000
541 #define	LINUX_O_DIRECT		00040000	/* Direct disk access hint */
542 #define	LINUX_O_LARGEFILE	00100000
543 #define	LINUX_O_DIRECTORY	00200000	/* Must be a directory */
544 #define	LINUX_O_NOFOLLOW	00400000	/* Do not follow links */
545 #define	LINUX_O_NOATIME		01000000
546 
547 #define	LINUX_F_DUPFD		0
548 #define	LINUX_F_GETFD		1
549 #define	LINUX_F_SETFD		2
550 #define	LINUX_F_GETFL		3
551 #define	LINUX_F_SETFL		4
552 #define	LINUX_F_GETLK		5
553 #define	LINUX_F_SETLK		6
554 #define	LINUX_F_SETLKW		7
555 #define	LINUX_F_SETOWN		8
556 #define	LINUX_F_GETOWN		9
557 
558 #define	LINUX_F_GETLK64		12
559 #define	LINUX_F_SETLK64		13
560 #define	LINUX_F_SETLKW64	14
561 
562 #define	LINUX_F_RDLCK		0
563 #define	LINUX_F_WRLCK		1
564 #define	LINUX_F_UNLCK		2
565 
566 /*
567  * mount flags
568  */
569 #define	LINUX_MS_RDONLY		0x0001
570 #define	LINUX_MS_NOSUID		0x0002
571 #define	LINUX_MS_NODEV		0x0004
572 #define	LINUX_MS_NOEXEC		0x0008
573 #define	LINUX_MS_REMOUNT	0x0020
574 
575 /*
576  * SystemV IPC defines
577  */
578 #define	LINUX_SEMOP		1
579 #define	LINUX_SEMGET		2
580 #define	LINUX_SEMCTL		3
581 #define	LINUX_MSGSND		11
582 #define	LINUX_MSGRCV		12
583 #define	LINUX_MSGGET		13
584 #define	LINUX_MSGCTL		14
585 #define	LINUX_SHMAT		21
586 #define	LINUX_SHMDT		22
587 #define	LINUX_SHMGET		23
588 #define	LINUX_SHMCTL		24
589 
590 #define	LINUX_IPC_RMID		0
591 #define	LINUX_IPC_SET		1
592 #define	LINUX_IPC_STAT		2
593 #define	LINUX_IPC_INFO		3
594 
595 #define	LINUX_SHM_LOCK		11
596 #define	LINUX_SHM_UNLOCK	12
597 #define	LINUX_SHM_STAT		13
598 #define	LINUX_SHM_INFO		14
599 
600 #define	LINUX_SHM_RDONLY	0x1000
601 #define	LINUX_SHM_RND		0x2000
602 #define	LINUX_SHM_REMAP		0x4000
603 
604 /* semctl commands */
605 #define	LINUX_GETPID		11
606 #define	LINUX_GETVAL		12
607 #define	LINUX_GETALL		13
608 #define	LINUX_GETNCNT		14
609 #define	LINUX_GETZCNT		15
610 #define	LINUX_SETVAL		16
611 #define	LINUX_SETALL		17
612 #define	LINUX_SEM_STAT		18
613 #define	LINUX_SEM_INFO		19
614 
615 union l_semun {
616 	l_int		val;
617 	struct l_semid_ds	*buf;
618 	l_ushort	*array;
619 	struct l_seminfo	*__buf;
620 	void		*__pad;
621 };
622 
623 /*
624  * Socket defines
625  */
626 #define	LINUX_SOCKET 		1
627 #define	LINUX_BIND		2
628 #define	LINUX_CONNECT 		3
629 #define	LINUX_LISTEN 		4
630 #define	LINUX_ACCEPT 		5
631 #define	LINUX_GETSOCKNAME	6
632 #define	LINUX_GETPEERNAME	7
633 #define	LINUX_SOCKETPAIR	8
634 #define	LINUX_SEND		9
635 #define	LINUX_RECV		10
636 #define	LINUX_SENDTO 		11
637 #define	LINUX_RECVFROM 		12
638 #define	LINUX_SHUTDOWN 		13
639 #define	LINUX_SETSOCKOPT	14
640 #define	LINUX_GETSOCKOPT	15
641 #define	LINUX_SENDMSG		16
642 #define	LINUX_RECVMSG		17
643 
644 #define	LINUX_AF_UNSPEC		0
645 #define	LINUX_AF_UNIX		1
646 #define	LINUX_AF_INET		2
647 #define	LINUX_AF_AX25		3
648 #define	LINUX_AF_IPX		4
649 #define	LINUX_AF_APPLETALK	5
650 #define	LINUX_AF_INET6		10
651 
652 #define	LINUX_SOL_SOCKET	1
653 #define	LINUX_SOL_IP		0
654 #define	LINUX_SOL_IPX		256
655 #define	LINUX_SOL_AX25		257
656 #define	LINUX_SOL_TCP		6
657 #define	LINUX_SOL_UDP		17
658 
659 #define	LINUX_SO_DEBUG		1
660 #define	LINUX_SO_REUSEADDR	2
661 #define	LINUX_SO_TYPE		3
662 #define	LINUX_SO_ERROR		4
663 #define	LINUX_SO_DONTROUTE	5
664 #define	LINUX_SO_BROADCAST	6
665 #define	LINUX_SO_SNDBUF		7
666 #define	LINUX_SO_RCVBUF		8
667 #define	LINUX_SO_KEEPALIVE	9
668 #define	LINUX_SO_OOBINLINE	10
669 #define	LINUX_SO_NO_CHECK	11
670 #define	LINUX_SO_PRIORITY	12
671 #define	LINUX_SO_LINGER		13
672 #define	LINUX_SO_PEERCRED	17
673 #define	LINUX_SO_RCVLOWAT	18
674 #define	LINUX_SO_SNDLOWAT	19
675 #define	LINUX_SO_RCVTIMEO	20
676 #define	LINUX_SO_SNDTIMEO	21
677 #define	LINUX_SO_TIMESTAMP	29
678 #define	LINUX_SO_ACCEPTCONN	30
679 
680 #define	LINUX_IP_TOS		1
681 #define	LINUX_IP_TTL		2
682 #define	LINUX_IP_HDRINCL	3
683 #define	LINUX_IP_OPTIONS	4
684 
685 #define	LINUX_IP_MULTICAST_IF		32
686 #define	LINUX_IP_MULTICAST_TTL		33
687 #define	LINUX_IP_MULTICAST_LOOP		34
688 #define	LINUX_IP_ADD_MEMBERSHIP		35
689 #define	LINUX_IP_DROP_MEMBERSHIP	36
690 
691 struct l_sockaddr {
692 	l_ushort	sa_family;
693 	char		sa_data[14];
694 };
695 
696 struct l_msghdr {
697 	l_uintptr_t	msg_name;
698 	l_int		msg_namelen;
699 	l_uintptr_t	msg_iov;
700 	l_size_t	msg_iovlen;
701 	l_uintptr_t	msg_control;
702 	l_size_t	msg_controllen;
703 	l_uint		msg_flags;
704 };
705 
706 struct l_cmsghdr {
707 	l_size_t	cmsg_len;
708 	l_int		cmsg_level;
709 	l_int		cmsg_type;
710 };
711 
712 struct l_ifmap {
713 	l_ulong		mem_start;
714 	l_ulong		mem_end;
715 	l_ushort	base_addr;
716 	u_char		irq;
717 	u_char		dma;
718 	u_char		port;
719 };
720 
721 #define	LINUX_IFHWADDRLEN	6
722 #define	LINUX_IFNAMSIZ		16
723 
724 struct l_ifreq {
725 	union {
726 		char	ifrn_name[LINUX_IFNAMSIZ];
727 	} ifr_ifrn;
728 
729 	union {
730 		struct l_sockaddr	ifru_addr;
731 		struct l_sockaddr	ifru_dstaddr;
732 		struct l_sockaddr	ifru_broadaddr;
733 		struct l_sockaddr	ifru_netmask;
734 		struct l_sockaddr	ifru_hwaddr;
735 		l_short		ifru_flags[1];
736 		l_int		ifru_metric;
737 		l_int		ifru_mtu;
738 		struct l_ifmap	ifru_map;
739 		char		ifru_slave[LINUX_IFNAMSIZ];
740 		l_caddr_t	ifru_data;
741 	} ifr_ifru;
742 };
743 
744 #define	ifr_name	ifr_ifrn.ifrn_name	/* Interface name */
745 #define	ifr_hwaddr	ifr_ifru.ifru_hwaddr	/* MAC address */
746 
747 /*
748  * poll()
749  */
750 #define	LINUX_POLLIN		0x0001
751 #define	LINUX_POLLPRI		0x0002
752 #define	LINUX_POLLOUT		0x0004
753 #define	LINUX_POLLERR		0x0008
754 #define	LINUX_POLLHUP		0x0010
755 #define	LINUX_POLLNVAL		0x0020
756 #define	LINUX_POLLRDNORM	0x0040
757 #define	LINUX_POLLRDBAND	0x0080
758 #define	LINUX_POLLWRNORM	0x0100
759 #define	LINUX_POLLWRBAND	0x0200
760 #define	LINUX_POLLMSG		0x0400
761 
762 struct l_pollfd {
763 	l_int		fd;
764 	l_short		events;
765 	l_short		revents;
766 };
767 
768 struct l_user_desc {
769 	l_uint		entry_number;
770 	l_uint		base_addr;
771 	l_uint		limit;
772 	l_uint		seg_32bit:1;
773 	l_uint		contents:2;
774 	l_uint		read_exec_only:1;
775 	l_uint		limit_in_pages:1;
776 	l_uint		seg_not_present:1;
777 	l_uint		useable:1;
778 };
779 
780 struct l_desc_struct {
781 	unsigned long	a, b;
782 };
783 
784 
785 #define	LINUX_LOWERWORD	0x0000ffff
786 
787 /*
788  * Macros which does the same thing as those in Linux include/asm-um/ldt-i386.h.
789  * These convert Linux user space descriptor to machine one.
790  */
791 #define	LINUX_LDT_entry_a(info)					\
792 	((((info)->base_addr & LINUX_LOWERWORD) << 16) |	\
793 	((info)->limit & LINUX_LOWERWORD))
794 
795 #define	LINUX_ENTRY_B_READ_EXEC_ONLY	9
796 #define	LINUX_ENTRY_B_CONTENTS		10
797 #define	LINUX_ENTRY_B_SEG_NOT_PRESENT	15
798 #define	LINUX_ENTRY_B_BASE_ADDR		16
799 #define	LINUX_ENTRY_B_USEABLE		20
800 #define	LINUX_ENTRY_B_SEG32BIT		22
801 #define	LINUX_ENTRY_B_LIMIT		23
802 
803 #define	LINUX_LDT_entry_b(info)							\
804 	(((info)->base_addr & 0xff000000) |					\
805 	((info)->limit & 0xf0000) |						\
806 	((info)->contents << LINUX_ENTRY_B_CONTENTS) |				\
807 	(((info)->seg_not_present == 0) << LINUX_ENTRY_B_SEG_NOT_PRESENT) |	\
808 	(((info)->base_addr & 0x00ff0000) >> LINUX_ENTRY_B_BASE_ADDR) |		\
809 	(((info)->read_exec_only == 0) << LINUX_ENTRY_B_READ_EXEC_ONLY) |	\
810 	((info)->seg_32bit << LINUX_ENTRY_B_SEG32BIT) |				\
811 	((info)->useable << LINUX_ENTRY_B_USEABLE) |				\
812 	((info)->limit_in_pages << LINUX_ENTRY_B_LIMIT) | 0x7000)
813 
814 #define	LINUX_LDT_empty(info)		\
815 	((info)->base_addr == 0 &&	\
816 	(info)->limit == 0 &&		\
817 	(info)->contents == 0 &&	\
818 	(info)->seg_not_present == 1 &&	\
819 	(info)->read_exec_only == 1 &&	\
820 	(info)->seg_32bit == 0 &&	\
821 	(info)->limit_in_pages == 0 &&	\
822 	(info)->useable == 0)
823 
824 /*
825  * Macros for converting segments.
826  * They do the same as those in arch/i386/kernel/process.c in Linux.
827  */
828 #define	LINUX_GET_BASE(desc)				\
829 	((((desc)->a >> 16) & LINUX_LOWERWORD) |	\
830 	(((desc)->b << 16) & 0x00ff0000) |		\
831 	((desc)->b & 0xff000000))
832 
833 #define	LINUX_GET_LIMIT(desc)			\
834 	(((desc)->a & LINUX_LOWERWORD) |	\
835 	((desc)->b & 0xf0000))
836 
837 #define	LINUX_GET_32BIT(desc)		\
838 	(((desc)->b >> LINUX_ENTRY_B_SEG32BIT) & 1)
839 #define	LINUX_GET_CONTENTS(desc)	\
840 	(((desc)->b >> LINUX_ENTRY_B_CONTENTS) & 3)
841 #define	LINUX_GET_WRITABLE(desc)	\
842 	(((desc)->b >> LINUX_ENTRY_B_READ_EXEC_ONLY) & 1)
843 #define	LINUX_GET_LIMIT_PAGES(desc)	\
844 	(((desc)->b >> LINUX_ENTRY_B_LIMIT) & 1)
845 #define	LINUX_GET_PRESENT(desc)		\
846 	(((desc)->b >> LINUX_ENTRY_B_SEG_NOT_PRESENT) & 1)
847 #define	LINUX_GET_USEABLE(desc)		\
848 	(((desc)->b >> LINUX_ENTRY_B_USEABLE) & 1)
849 
850 #define	LINUX_CLOCK_REALTIME		0
851 #define	LINUX_CLOCK_MONOTONIC		1
852 #define	LINUX_CLOCK_PROCESS_CPUTIME_ID	2
853 #define	LINUX_CLOCK_THREAD_CPUTIME_ID	3
854 #define	LINUX_CLOCK_REALTIME_HR		4
855 #define	LINUX_CLOCK_MONOTONIC_HR	5
856 
857 #define	LINUX_CLONE_VM			0x00000100
858 #define	LINUX_CLONE_FS			0x00000200
859 #define	LINUX_CLONE_FILES		0x00000400
860 #define	LINUX_CLONE_SIGHAND		0x00000800
861 #define	LINUX_CLONE_PID			0x00001000	/* No longer exist in Linux */
862 #define	LINUX_CLONE_VFORK		0x00004000
863 #define	LINUX_CLONE_PARENT		0x00008000
864 #define	LINUX_CLONE_THREAD		0x00010000
865 #define	LINUX_CLONE_SETTLS		0x00080000
866 #define	LINUX_CLONE_PARENT_SETTID	0x00100000
867 #define	LINUX_CLONE_CHILD_CLEARTID	0x00200000
868 #define	LINUX_CLONE_CHILD_SETTID	0x01000000
869 
870 #define	LINUX_THREADING_FLAGS					\
871 	(LINUX_CLONE_VM | LINUX_CLONE_FS | LINUX_CLONE_FILES |	\
872 	LINUX_CLONE_SIGHAND | LINUX_CLONE_THREAD)
873 
874 /* robust futexes */
875 struct linux_robust_list {
876 	struct linux_robust_list	*next;
877 };
878 
879 struct linux_robust_list_head {
880 	struct linux_robust_list	list;
881 	l_long				futex_offset;
882 	struct linux_robust_list	*pending_list;
883 };
884 
885 #endif /* !_I386_LINUX_H_ */
886