xref: /freebsd/sys/amd64/linux32/linux32_machdep.c (revision 3b57ddb029daf225a8385dade491019269da82e8)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 2004 Tim J. Robbins
5  * Copyright (c) 2002 Doug Rabson
6  * Copyright (c) 2000 Marcel Moolenaar
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer
14  *    in this position and unchanged.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. The name of the author may not be used to endorse or promote products
19  *    derived from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 #include "opt_compat.h"
37 
38 #include <sys/param.h>
39 #include <sys/capsicum.h>
40 #include <sys/clock.h>
41 #include <sys/fcntl.h>
42 #include <sys/file.h>
43 #include <sys/imgact.h>
44 #include <sys/kernel.h>
45 #include <sys/limits.h>
46 #include <sys/lock.h>
47 #include <sys/malloc.h>
48 #include <sys/mman.h>
49 #include <sys/mutex.h>
50 #include <sys/priv.h>
51 #include <sys/proc.h>
52 #include <sys/resource.h>
53 #include <sys/resourcevar.h>
54 #include <sys/syscallsubr.h>
55 #include <sys/sysproto.h>
56 #include <sys/systm.h>
57 #include <sys/unistd.h>
58 #include <sys/wait.h>
59 
60 #include <machine/frame.h>
61 #include <machine/md_var.h>
62 #include <machine/pcb.h>
63 #include <machine/psl.h>
64 #include <machine/segments.h>
65 #include <machine/specialreg.h>
66 #include <x86/ifunc.h>
67 
68 #include <vm/pmap.h>
69 #include <vm/vm.h>
70 #include <vm/vm_map.h>
71 
72 #include <security/audit/audit.h>
73 
74 #include <compat/freebsd32/freebsd32_util.h>
75 #include <amd64/linux32/linux.h>
76 #include <amd64/linux32/linux32_proto.h>
77 #include <compat/linux/linux_emul.h>
78 #include <compat/linux/linux_ipc.h>
79 #include <compat/linux/linux_misc.h>
80 #include <compat/linux/linux_mmap.h>
81 #include <compat/linux/linux_signal.h>
82 #include <compat/linux/linux_util.h>
83 
84 static void	bsd_to_linux_rusage(struct rusage *ru, struct l_rusage *lru);
85 
86 struct l_old_select_argv {
87 	l_int		nfds;
88 	l_uintptr_t	readfds;
89 	l_uintptr_t	writefds;
90 	l_uintptr_t	exceptfds;
91 	l_uintptr_t	timeout;
92 } __packed;
93 
94 static void
95 bsd_to_linux_rusage(struct rusage *ru, struct l_rusage *lru)
96 {
97 
98 	lru->ru_utime.tv_sec = ru->ru_utime.tv_sec;
99 	lru->ru_utime.tv_usec = ru->ru_utime.tv_usec;
100 	lru->ru_stime.tv_sec = ru->ru_stime.tv_sec;
101 	lru->ru_stime.tv_usec = ru->ru_stime.tv_usec;
102 	lru->ru_maxrss = ru->ru_maxrss;
103 	lru->ru_ixrss = ru->ru_ixrss;
104 	lru->ru_idrss = ru->ru_idrss;
105 	lru->ru_isrss = ru->ru_isrss;
106 	lru->ru_minflt = ru->ru_minflt;
107 	lru->ru_majflt = ru->ru_majflt;
108 	lru->ru_nswap = ru->ru_nswap;
109 	lru->ru_inblock = ru->ru_inblock;
110 	lru->ru_oublock = ru->ru_oublock;
111 	lru->ru_msgsnd = ru->ru_msgsnd;
112 	lru->ru_msgrcv = ru->ru_msgrcv;
113 	lru->ru_nsignals = ru->ru_nsignals;
114 	lru->ru_nvcsw = ru->ru_nvcsw;
115 	lru->ru_nivcsw = ru->ru_nivcsw;
116 }
117 
118 int
119 linux_copyout_rusage(struct rusage *ru, void *uaddr)
120 {
121 	struct l_rusage lru;
122 
123 	bsd_to_linux_rusage(ru, &lru);
124 
125 	return (copyout(&lru, uaddr, sizeof(struct l_rusage)));
126 }
127 
128 int
129 linux_execve(struct thread *td, struct linux_execve_args *args)
130 {
131 	struct image_args eargs;
132 	char *path;
133 	int error;
134 
135 	LCONVPATHEXIST(td, args->path, &path);
136 
137 	error = freebsd32_exec_copyin_args(&eargs, path, UIO_SYSSPACE,
138 	    args->argp, args->envp);
139 	free(path, M_TEMP);
140 	if (error == 0)
141 		error = linux_common_execve(td, &eargs);
142 	AUDIT_SYSCALL_EXIT(error == EJUSTRETURN ? 0 : error, td);
143 	return (error);
144 }
145 
146 CTASSERT(sizeof(struct l_iovec32) == 8);
147 
148 int
149 linux32_copyinuio(struct l_iovec32 *iovp, l_ulong iovcnt, struct uio **uiop)
150 {
151 	struct l_iovec32 iov32;
152 	struct iovec *iov;
153 	struct uio *uio;
154 	uint32_t iovlen;
155 	int error, i;
156 
157 	*uiop = NULL;
158 	if (iovcnt > UIO_MAXIOV)
159 		return (EINVAL);
160 	iovlen = iovcnt * sizeof(struct iovec);
161 	uio = malloc(iovlen + sizeof(*uio), M_IOV, M_WAITOK);
162 	iov = (struct iovec *)(uio + 1);
163 	for (i = 0; i < iovcnt; i++) {
164 		error = copyin(&iovp[i], &iov32, sizeof(struct l_iovec32));
165 		if (error) {
166 			free(uio, M_IOV);
167 			return (error);
168 		}
169 		iov[i].iov_base = PTRIN(iov32.iov_base);
170 		iov[i].iov_len = iov32.iov_len;
171 	}
172 	uio->uio_iov = iov;
173 	uio->uio_iovcnt = iovcnt;
174 	uio->uio_segflg = UIO_USERSPACE;
175 	uio->uio_offset = -1;
176 	uio->uio_resid = 0;
177 	for (i = 0; i < iovcnt; i++) {
178 		if (iov->iov_len > INT_MAX - uio->uio_resid) {
179 			free(uio, M_IOV);
180 			return (EINVAL);
181 		}
182 		uio->uio_resid += iov->iov_len;
183 		iov++;
184 	}
185 	*uiop = uio;
186 	return (0);
187 }
188 
189 int
190 linux32_copyiniov(struct l_iovec32 *iovp32, l_ulong iovcnt, struct iovec **iovp,
191     int error)
192 {
193 	struct l_iovec32 iov32;
194 	struct iovec *iov;
195 	uint32_t iovlen;
196 	int i;
197 
198 	*iovp = NULL;
199 	if (iovcnt > UIO_MAXIOV)
200 		return (error);
201 	iovlen = iovcnt * sizeof(struct iovec);
202 	iov = malloc(iovlen, M_IOV, M_WAITOK);
203 	for (i = 0; i < iovcnt; i++) {
204 		error = copyin(&iovp32[i], &iov32, sizeof(struct l_iovec32));
205 		if (error) {
206 			free(iov, M_IOV);
207 			return (error);
208 		}
209 		iov[i].iov_base = PTRIN(iov32.iov_base);
210 		iov[i].iov_len = iov32.iov_len;
211 	}
212 	*iovp = iov;
213 	return(0);
214 
215 }
216 
217 int
218 linux_readv(struct thread *td, struct linux_readv_args *uap)
219 {
220 	struct uio *auio;
221 	int error;
222 
223 	error = linux32_copyinuio(uap->iovp, uap->iovcnt, &auio);
224 	if (error)
225 		return (error);
226 	error = kern_readv(td, uap->fd, auio);
227 	free(auio, M_IOV);
228 	return (error);
229 }
230 
231 int
232 linux_writev(struct thread *td, struct linux_writev_args *uap)
233 {
234 	struct uio *auio;
235 	int error;
236 
237 	error = linux32_copyinuio(uap->iovp, uap->iovcnt, &auio);
238 	if (error)
239 		return (error);
240 	error = kern_writev(td, uap->fd, auio);
241 	free(auio, M_IOV);
242 	return (error);
243 }
244 
245 struct l_ipc_kludge {
246 	l_uintptr_t msgp;
247 	l_long msgtyp;
248 } __packed;
249 
250 int
251 linux_ipc(struct thread *td, struct linux_ipc_args *args)
252 {
253 
254 	switch (args->what & 0xFFFF) {
255 	case LINUX_SEMOP: {
256 		struct linux_semop_args a;
257 
258 		a.semid = args->arg1;
259 		a.tsops = PTRIN(args->ptr);
260 		a.nsops = args->arg2;
261 		return (linux_semop(td, &a));
262 	}
263 	case LINUX_SEMGET: {
264 		struct linux_semget_args a;
265 
266 		a.key = args->arg1;
267 		a.nsems = args->arg2;
268 		a.semflg = args->arg3;
269 		return (linux_semget(td, &a));
270 	}
271 	case LINUX_SEMCTL: {
272 		struct linux_semctl_args a;
273 		int error;
274 
275 		a.semid = args->arg1;
276 		a.semnum = args->arg2;
277 		a.cmd = args->arg3;
278 		error = copyin(PTRIN(args->ptr), &a.arg, sizeof(a.arg));
279 		if (error)
280 			return (error);
281 		return (linux_semctl(td, &a));
282 	}
283 	case LINUX_MSGSND: {
284 		struct linux_msgsnd_args a;
285 
286 		a.msqid = args->arg1;
287 		a.msgp = PTRIN(args->ptr);
288 		a.msgsz = args->arg2;
289 		a.msgflg = args->arg3;
290 		return (linux_msgsnd(td, &a));
291 	}
292 	case LINUX_MSGRCV: {
293 		struct linux_msgrcv_args a;
294 
295 		a.msqid = args->arg1;
296 		a.msgsz = args->arg2;
297 		a.msgflg = args->arg3;
298 		if ((args->what >> 16) == 0) {
299 			struct l_ipc_kludge tmp;
300 			int error;
301 
302 			if (args->ptr == 0)
303 				return (EINVAL);
304 			error = copyin(PTRIN(args->ptr), &tmp, sizeof(tmp));
305 			if (error)
306 				return (error);
307 			a.msgp = PTRIN(tmp.msgp);
308 			a.msgtyp = tmp.msgtyp;
309 		} else {
310 			a.msgp = PTRIN(args->ptr);
311 			a.msgtyp = args->arg5;
312 		}
313 		return (linux_msgrcv(td, &a));
314 	}
315 	case LINUX_MSGGET: {
316 		struct linux_msgget_args a;
317 
318 		a.key = args->arg1;
319 		a.msgflg = args->arg2;
320 		return (linux_msgget(td, &a));
321 	}
322 	case LINUX_MSGCTL: {
323 		struct linux_msgctl_args a;
324 
325 		a.msqid = args->arg1;
326 		a.cmd = args->arg2;
327 		a.buf = PTRIN(args->ptr);
328 		return (linux_msgctl(td, &a));
329 	}
330 	case LINUX_SHMAT: {
331 		struct linux_shmat_args a;
332 		l_uintptr_t addr;
333 		int error;
334 
335 		a.shmid = args->arg1;
336 		a.shmaddr = PTRIN(args->ptr);
337 		a.shmflg = args->arg2;
338 		error = linux_shmat(td, &a);
339 		if (error != 0)
340 			return (error);
341 		addr = td->td_retval[0];
342 		error = copyout(&addr, PTRIN(args->arg3), sizeof(addr));
343 		td->td_retval[0] = 0;
344 		return (error);
345 	}
346 	case LINUX_SHMDT: {
347 		struct linux_shmdt_args a;
348 
349 		a.shmaddr = PTRIN(args->ptr);
350 		return (linux_shmdt(td, &a));
351 	}
352 	case LINUX_SHMGET: {
353 		struct linux_shmget_args a;
354 
355 		a.key = args->arg1;
356 		a.size = args->arg2;
357 		a.shmflg = args->arg3;
358 		return (linux_shmget(td, &a));
359 	}
360 	case LINUX_SHMCTL: {
361 		struct linux_shmctl_args a;
362 
363 		a.shmid = args->arg1;
364 		a.cmd = args->arg2;
365 		a.buf = PTRIN(args->ptr);
366 		return (linux_shmctl(td, &a));
367 	}
368 	default:
369 		break;
370 	}
371 
372 	return (EINVAL);
373 }
374 
375 int
376 linux_old_select(struct thread *td, struct linux_old_select_args *args)
377 {
378 	struct l_old_select_argv linux_args;
379 	struct linux_select_args newsel;
380 	int error;
381 
382 	error = copyin(args->ptr, &linux_args, sizeof(linux_args));
383 	if (error)
384 		return (error);
385 
386 	newsel.nfds = linux_args.nfds;
387 	newsel.readfds = PTRIN(linux_args.readfds);
388 	newsel.writefds = PTRIN(linux_args.writefds);
389 	newsel.exceptfds = PTRIN(linux_args.exceptfds);
390 	newsel.timeout = PTRIN(linux_args.timeout);
391 	return (linux_select(td, &newsel));
392 }
393 
394 int
395 linux_set_cloned_tls(struct thread *td, void *desc)
396 {
397 	struct l_user_desc info;
398 	struct pcb *pcb;
399 	int error;
400 
401 	error = copyin(desc, &info, sizeof(struct l_user_desc));
402 	if (error) {
403 		linux_msg(td, "set_cloned_tls copyin info failed!");
404 	} else {
405 		/* We might copy out the entry_number as GUGS32_SEL. */
406 		info.entry_number = GUGS32_SEL;
407 		error = copyout(&info, desc, sizeof(struct l_user_desc));
408 		if (error)
409 			linux_msg(td, "set_cloned_tls copyout info failed!");
410 
411 		pcb = td->td_pcb;
412 		update_pcb_bases(pcb);
413 		pcb->pcb_gsbase = (register_t)info.base_addr;
414 		td->td_frame->tf_gs = GSEL(GUGS32_SEL, SEL_UPL);
415 	}
416 
417 	return (error);
418 }
419 
420 int
421 linux_set_upcall(struct thread *td, register_t stack)
422 {
423 
424 	if (stack)
425 		td->td_frame->tf_rsp = stack;
426 
427 	/*
428 	 * The newly created Linux thread returns
429 	 * to the user space by the same path that a parent do.
430 	 */
431 	td->td_frame->tf_rax = 0;
432 	return (0);
433 }
434 
435 int
436 linux_mmap2(struct thread *td, struct linux_mmap2_args *args)
437 {
438 
439 	return (linux_mmap_common(td, PTROUT(args->addr), args->len, args->prot,
440 		args->flags, args->fd, (uint64_t)(uint32_t)args->pgoff *
441 		PAGE_SIZE));
442 }
443 
444 int
445 linux_mmap(struct thread *td, struct linux_mmap_args *args)
446 {
447 	int error;
448 	struct l_mmap_argv linux_args;
449 
450 	error = copyin(args->ptr, &linux_args, sizeof(linux_args));
451 	if (error)
452 		return (error);
453 
454 	return (linux_mmap_common(td, linux_args.addr, linux_args.len,
455 	    linux_args.prot, linux_args.flags, linux_args.fd,
456 	    (uint32_t)linux_args.pgoff));
457 }
458 
459 int
460 linux_mprotect(struct thread *td, struct linux_mprotect_args *uap)
461 {
462 
463 	return (linux_mprotect_common(td, PTROUT(uap->addr), uap->len, uap->prot));
464 }
465 
466 int
467 linux_madvise(struct thread *td, struct linux_madvise_args *uap)
468 {
469 
470 	return (linux_madvise_common(td, PTROUT(uap->addr), uap->len, uap->behav));
471 }
472 
473 int
474 linux_iopl(struct thread *td, struct linux_iopl_args *args)
475 {
476 	int error;
477 
478 	if (args->level < 0 || args->level > 3)
479 		return (EINVAL);
480 	if ((error = priv_check(td, PRIV_IO)) != 0)
481 		return (error);
482 	if ((error = securelevel_gt(td->td_ucred, 0)) != 0)
483 		return (error);
484 	td->td_frame->tf_rflags = (td->td_frame->tf_rflags & ~PSL_IOPL) |
485 	    (args->level * (PSL_IOPL / 3));
486 
487 	return (0);
488 }
489 
490 int
491 linux_sigaction(struct thread *td, struct linux_sigaction_args *args)
492 {
493 	l_osigaction_t osa;
494 	l_sigaction_t act, oact;
495 	int error;
496 
497 	if (args->nsa != NULL) {
498 		error = copyin(args->nsa, &osa, sizeof(l_osigaction_t));
499 		if (error)
500 			return (error);
501 		act.lsa_handler = osa.lsa_handler;
502 		act.lsa_flags = osa.lsa_flags;
503 		act.lsa_restorer = osa.lsa_restorer;
504 		LINUX_SIGEMPTYSET(act.lsa_mask);
505 		act.lsa_mask.__mask = osa.lsa_mask;
506 	}
507 
508 	error = linux_do_sigaction(td, args->sig, args->nsa ? &act : NULL,
509 	    args->osa ? &oact : NULL);
510 
511 	if (args->osa != NULL && !error) {
512 		osa.lsa_handler = oact.lsa_handler;
513 		osa.lsa_flags = oact.lsa_flags;
514 		osa.lsa_restorer = oact.lsa_restorer;
515 		osa.lsa_mask = oact.lsa_mask.__mask;
516 		error = copyout(&osa, args->osa, sizeof(l_osigaction_t));
517 	}
518 
519 	return (error);
520 }
521 
522 /*
523  * Linux has two extra args, restart and oldmask.  We don't use these,
524  * but it seems that "restart" is actually a context pointer that
525  * enables the signal to happen with a different register set.
526  */
527 int
528 linux_sigsuspend(struct thread *td, struct linux_sigsuspend_args *args)
529 {
530 	sigset_t sigmask;
531 	l_sigset_t mask;
532 
533 	LINUX_SIGEMPTYSET(mask);
534 	mask.__mask = args->mask;
535 	linux_to_bsd_sigset(&mask, &sigmask);
536 	return (kern_sigsuspend(td, sigmask));
537 }
538 
539 int
540 linux_rt_sigsuspend(struct thread *td, struct linux_rt_sigsuspend_args *uap)
541 {
542 	l_sigset_t lmask;
543 	sigset_t sigmask;
544 	int error;
545 
546 	if (uap->sigsetsize != sizeof(l_sigset_t))
547 		return (EINVAL);
548 
549 	error = copyin(uap->newset, &lmask, sizeof(l_sigset_t));
550 	if (error)
551 		return (error);
552 
553 	linux_to_bsd_sigset(&lmask, &sigmask);
554 	return (kern_sigsuspend(td, sigmask));
555 }
556 
557 int
558 linux_pause(struct thread *td, struct linux_pause_args *args)
559 {
560 	struct proc *p = td->td_proc;
561 	sigset_t sigmask;
562 
563 	PROC_LOCK(p);
564 	sigmask = td->td_sigmask;
565 	PROC_UNLOCK(p);
566 	return (kern_sigsuspend(td, sigmask));
567 }
568 
569 int
570 linux_sigaltstack(struct thread *td, struct linux_sigaltstack_args *uap)
571 {
572 	stack_t ss, oss;
573 	l_stack_t lss;
574 	int error;
575 
576 	if (uap->uss != NULL) {
577 		error = copyin(uap->uss, &lss, sizeof(l_stack_t));
578 		if (error)
579 			return (error);
580 
581 		ss.ss_sp = PTRIN(lss.ss_sp);
582 		ss.ss_size = lss.ss_size;
583 		ss.ss_flags = linux_to_bsd_sigaltstack(lss.ss_flags);
584 	}
585 	error = kern_sigaltstack(td, (uap->uss != NULL) ? &ss : NULL,
586 	    (uap->uoss != NULL) ? &oss : NULL);
587 	if (!error && uap->uoss != NULL) {
588 		lss.ss_sp = PTROUT(oss.ss_sp);
589 		lss.ss_size = oss.ss_size;
590 		lss.ss_flags = bsd_to_linux_sigaltstack(oss.ss_flags);
591 		error = copyout(&lss, uap->uoss, sizeof(l_stack_t));
592 	}
593 
594 	return (error);
595 }
596 
597 int
598 linux_gettimeofday(struct thread *td, struct linux_gettimeofday_args *uap)
599 {
600 	struct timeval atv;
601 	l_timeval atv32;
602 	struct timezone rtz;
603 	int error = 0;
604 
605 	if (uap->tp) {
606 		microtime(&atv);
607 		atv32.tv_sec = atv.tv_sec;
608 		atv32.tv_usec = atv.tv_usec;
609 		error = copyout(&atv32, uap->tp, sizeof(atv32));
610 	}
611 	if (error == 0 && uap->tzp != NULL) {
612 		rtz.tz_minuteswest = 0;
613 		rtz.tz_dsttime = 0;
614 		error = copyout(&rtz, uap->tzp, sizeof(rtz));
615 	}
616 	return (error);
617 }
618 
619 int
620 linux_settimeofday(struct thread *td, struct linux_settimeofday_args *uap)
621 {
622 	l_timeval atv32;
623 	struct timeval atv, *tvp;
624 	struct timezone atz, *tzp;
625 	int error;
626 
627 	if (uap->tp) {
628 		error = copyin(uap->tp, &atv32, sizeof(atv32));
629 		if (error)
630 			return (error);
631 		atv.tv_sec = atv32.tv_sec;
632 		atv.tv_usec = atv32.tv_usec;
633 		tvp = &atv;
634 	} else
635 		tvp = NULL;
636 	if (uap->tzp) {
637 		error = copyin(uap->tzp, &atz, sizeof(atz));
638 		if (error)
639 			return (error);
640 		tzp = &atz;
641 	} else
642 		tzp = NULL;
643 	return (kern_settimeofday(td, tvp, tzp));
644 }
645 
646 int
647 linux_getrusage(struct thread *td, struct linux_getrusage_args *uap)
648 {
649 	struct rusage s;
650 	int error;
651 
652 	error = kern_getrusage(td, uap->who, &s);
653 	if (error != 0)
654 		return (error);
655 	if (uap->rusage != NULL)
656 		error = linux_copyout_rusage(&s, uap->rusage);
657 	return (error);
658 }
659 
660 int
661 linux_set_thread_area(struct thread *td,
662     struct linux_set_thread_area_args *args)
663 {
664 	struct l_user_desc info;
665 	struct pcb *pcb;
666 	int error;
667 
668 	error = copyin(args->desc, &info, sizeof(struct l_user_desc));
669 	if (error)
670 		return (error);
671 
672 	/*
673 	 * Semantics of Linux version: every thread in the system has array
674 	 * of three TLS descriptors. 1st is GLIBC TLS, 2nd is WINE, 3rd unknown.
675 	 * This syscall loads one of the selected TLS decriptors with a value
676 	 * and also loads GDT descriptors 6, 7 and 8 with the content of
677 	 * the per-thread descriptors.
678 	 *
679 	 * Semantics of FreeBSD version: I think we can ignore that Linux has
680 	 * three per-thread descriptors and use just the first one.
681 	 * The tls_array[] is used only in [gs]et_thread_area() syscalls and
682 	 * for loading the GDT descriptors. We use just one GDT descriptor
683 	 * for TLS, so we will load just one.
684 	 *
685 	 * XXX: This doesn't work when a user space process tries to use more
686 	 * than one TLS segment. Comment in the Linux source says wine might
687 	 * do this.
688 	 */
689 
690 	/*
691 	 * GLIBC reads current %gs and call set_thread_area() with it.
692 	 * We should let GUDATA_SEL and GUGS32_SEL proceed as well because
693 	 * we use these segments.
694 	 */
695 	switch (info.entry_number) {
696 	case GUGS32_SEL:
697 	case GUDATA_SEL:
698 	case 6:
699 	case -1:
700 		info.entry_number = GUGS32_SEL;
701 		break;
702 	default:
703 		return (EINVAL);
704 	}
705 
706 	/*
707 	 * We have to copy out the GDT entry we use.
708 	 *
709 	 * XXX: What if a user space program does not check the return value
710 	 * and tries to use 6, 7 or 8?
711 	 */
712 	error = copyout(&info, args->desc, sizeof(struct l_user_desc));
713 	if (error)
714 		return (error);
715 
716 	pcb = td->td_pcb;
717 	update_pcb_bases(pcb);
718 	pcb->pcb_gsbase = (register_t)info.base_addr;
719 	update_gdt_gsbase(td, info.base_addr);
720 
721 	return (0);
722 }
723 
724 int futex_xchgl_nosmap(int oparg, uint32_t *uaddr, int *oldval);
725 int futex_xchgl_smap(int oparg, uint32_t *uaddr, int *oldval);
726 DEFINE_IFUNC(, int, futex_xchgl, (int, uint32_t *, int *))
727 {
728 
729 	return ((cpu_stdext_feature & CPUID_STDEXT_SMAP) != 0 ?
730 	    futex_xchgl_smap : futex_xchgl_nosmap);
731 }
732 
733 int futex_addl_nosmap(int oparg, uint32_t *uaddr, int *oldval);
734 int futex_addl_smap(int oparg, uint32_t *uaddr, int *oldval);
735 DEFINE_IFUNC(, int, futex_addl, (int, uint32_t *, int *))
736 {
737 
738 	return ((cpu_stdext_feature & CPUID_STDEXT_SMAP) != 0 ?
739 	    futex_addl_smap : futex_addl_nosmap);
740 }
741 
742 int futex_orl_nosmap(int oparg, uint32_t *uaddr, int *oldval);
743 int futex_orl_smap(int oparg, uint32_t *uaddr, int *oldval);
744 DEFINE_IFUNC(, int, futex_orl, (int, uint32_t *, int *))
745 {
746 
747 	return ((cpu_stdext_feature & CPUID_STDEXT_SMAP) != 0 ?
748 	    futex_orl_smap : futex_orl_nosmap);
749 }
750 
751 int futex_andl_nosmap(int oparg, uint32_t *uaddr, int *oldval);
752 int futex_andl_smap(int oparg, uint32_t *uaddr, int *oldval);
753 DEFINE_IFUNC(, int, futex_andl, (int, uint32_t *, int *))
754 {
755 
756 	return ((cpu_stdext_feature & CPUID_STDEXT_SMAP) != 0 ?
757 	    futex_andl_smap : futex_andl_nosmap);
758 }
759 
760 int futex_xorl_nosmap(int oparg, uint32_t *uaddr, int *oldval);
761 int futex_xorl_smap(int oparg, uint32_t *uaddr, int *oldval);
762 DEFINE_IFUNC(, int, futex_xorl, (int, uint32_t *, int *))
763 {
764 
765 	return ((cpu_stdext_feature & CPUID_STDEXT_SMAP) != 0 ?
766 	    futex_xorl_smap : futex_xorl_nosmap);
767 }
768