1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2008,  Jeffrey Roberson <jeff@freebsd.org>
5 * All rights reserved.
6 *
7 * Copyright (c) 2008 Nokia Corporation
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice unmodified, this list of conditions, and the following
15 *    disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD$");
35
36#include "opt_ddb.h"
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/sysctl.h>
41#include <sys/ctype.h>
42#include <sys/sysproto.h>
43#include <sys/jail.h>
44#include <sys/kernel.h>
45#include <sys/lock.h>
46#include <sys/malloc.h>
47#include <sys/mutex.h>
48#include <sys/priv.h>
49#include <sys/proc.h>
50#include <sys/refcount.h>
51#include <sys/sched.h>
52#include <sys/smp.h>
53#include <sys/syscallsubr.h>
54#include <sys/capsicum.h>
55#include <sys/cpuset.h>
56#include <sys/domainset.h>
57#include <sys/sx.h>
58#include <sys/queue.h>
59#include <sys/libkern.h>
60#include <sys/limits.h>
61#include <sys/bus.h>
62#include <sys/interrupt.h>
63#include <sys/vmmeter.h>
64
65#include <vm/uma.h>
66#include <vm/vm.h>
67#include <vm/vm_object.h>
68#include <vm/vm_page.h>
69#include <vm/vm_pageout.h>
70#include <vm/vm_extern.h>
71#include <vm/vm_param.h>
72#include <vm/vm_phys.h>
73#include <vm/vm_pagequeue.h>
74
75#ifdef DDB
76#include <ddb/ddb.h>
77#endif /* DDB */
78
79/*
80 * cpusets provide a mechanism for creating and manipulating sets of
81 * processors for the purpose of constraining the scheduling of threads to
82 * specific processors.
83 *
84 * Each process belongs to an identified set, by default this is set 1.  Each
85 * thread may further restrict the cpus it may run on to a subset of this
86 * named set.  This creates an anonymous set which other threads and processes
87 * may not join by number.
88 *
89 * The named set is referred to herein as the 'base' set to avoid ambiguity.
90 * This set is usually a child of a 'root' set while the anonymous set may
91 * simply be referred to as a mask.  In the syscall api these are referred to
92 * as the ROOT, CPUSET, and MASK levels where CPUSET is called 'base' here.
93 *
94 * Threads inherit their set from their creator whether it be anonymous or
95 * not.  This means that anonymous sets are immutable because they may be
96 * shared.  To modify an anonymous set a new set is created with the desired
97 * mask and the same parent as the existing anonymous set.  This gives the
98 * illusion of each thread having a private mask.
99 *
100 * Via the syscall apis a user may ask to retrieve or modify the root, base,
101 * or mask that is discovered via a pid, tid, or setid.  Modifying a set
102 * modifies all numbered and anonymous child sets to comply with the new mask.
103 * Modifying a pid or tid's mask applies only to that tid but must still
104 * exist within the assigned parent set.
105 *
106 * A thread may not be assigned to a group separate from other threads in
107 * the process.  This is to remove ambiguity when the setid is queried with
108 * a pid argument.  There is no other technical limitation.
109 *
110 * This somewhat complex arrangement is intended to make it easy for
111 * applications to query available processors and bind their threads to
112 * specific processors while also allowing administrators to dynamically
113 * reprovision by changing sets which apply to groups of processes.
114 *
115 * A simple application should not concern itself with sets at all and
116 * rather apply masks to its own threads via CPU_WHICH_TID and a -1 id
117 * meaning 'curthread'.  It may query available cpus for that tid with a
118 * getaffinity call using (CPU_LEVEL_CPUSET, CPU_WHICH_PID, -1, ...).
119 */
120
121LIST_HEAD(domainlist, domainset);
122struct domainset __read_mostly domainset_fixed[MAXMEMDOM];
123struct domainset __read_mostly domainset_prefer[MAXMEMDOM];
124struct domainset __read_mostly domainset_roundrobin;
125
126static uma_zone_t cpuset_zone;
127static uma_zone_t domainset_zone;
128static struct mtx cpuset_lock;
129static struct setlist cpuset_ids;
130static struct domainlist cpuset_domains;
131static struct unrhdr *cpuset_unr;
132static struct cpuset *cpuset_zero, *cpuset_default, *cpuset_kernel;
133static struct domainset domainset0, domainset2;
134
135/* Return the size of cpuset_t at the kernel level */
136SYSCTL_INT(_kern_sched, OID_AUTO, cpusetsize, CTLFLAG_RD | CTLFLAG_CAPRD,
137    SYSCTL_NULL_INT_PTR, sizeof(cpuset_t), "sizeof(cpuset_t)");
138
139cpuset_t *cpuset_root;
140cpuset_t cpuset_domain[MAXMEMDOM];
141
142static int domainset_valid(const struct domainset *, const struct domainset *);
143
144/*
145 * Find the first non-anonymous set starting from 'set'.
146 */
147static struct cpuset *
148cpuset_getbase(struct cpuset *set)
149{
150
151	if (set->cs_id == CPUSET_INVALID)
152		set = set->cs_parent;
153	return (set);
154}
155
156/*
157 * Walks up the tree from 'set' to find the root.
158 */
159static struct cpuset *
160cpuset_getroot(struct cpuset *set)
161{
162
163	while ((set->cs_flags & CPU_SET_ROOT) == 0 && set->cs_parent != NULL)
164		set = set->cs_parent;
165	return (set);
166}
167
168/*
169 * Acquire a reference to a cpuset, all pointers must be tracked with refs.
170 */
171struct cpuset *
172cpuset_ref(struct cpuset *set)
173{
174
175	refcount_acquire(&set->cs_ref);
176	return (set);
177}
178
179/*
180 * Walks up the tree from 'set' to find the root.  Returns the root
181 * referenced.
182 */
183static struct cpuset *
184cpuset_refroot(struct cpuset *set)
185{
186
187	return (cpuset_ref(cpuset_getroot(set)));
188}
189
190/*
191 * Find the first non-anonymous set starting from 'set'.  Returns this set
192 * referenced.  May return the passed in set with an extra ref if it is
193 * not anonymous.
194 */
195static struct cpuset *
196cpuset_refbase(struct cpuset *set)
197{
198
199	return (cpuset_ref(cpuset_getbase(set)));
200}
201
202/*
203 * Release a reference in a context where it is safe to allocate.
204 */
205void
206cpuset_rel(struct cpuset *set)
207{
208	cpusetid_t id;
209
210	if (refcount_release_if_not_last(&set->cs_ref))
211		return;
212	mtx_lock_spin(&cpuset_lock);
213	if (!refcount_release(&set->cs_ref)) {
214		mtx_unlock_spin(&cpuset_lock);
215		return;
216	}
217	LIST_REMOVE(set, cs_siblings);
218	id = set->cs_id;
219	if (id != CPUSET_INVALID)
220		LIST_REMOVE(set, cs_link);
221	mtx_unlock_spin(&cpuset_lock);
222	cpuset_rel(set->cs_parent);
223	uma_zfree(cpuset_zone, set);
224	if (id != CPUSET_INVALID)
225		free_unr(cpuset_unr, id);
226}
227
228/*
229 * Deferred release must be used when in a context that is not safe to
230 * allocate/free.  This places any unreferenced sets on the list 'head'.
231 */
232static void
233cpuset_rel_defer(struct setlist *head, struct cpuset *set)
234{
235
236	if (refcount_release_if_not_last(&set->cs_ref))
237		return;
238	mtx_lock_spin(&cpuset_lock);
239	if (!refcount_release(&set->cs_ref)) {
240		mtx_unlock_spin(&cpuset_lock);
241		return;
242	}
243	LIST_REMOVE(set, cs_siblings);
244	if (set->cs_id != CPUSET_INVALID)
245		LIST_REMOVE(set, cs_link);
246	LIST_INSERT_HEAD(head, set, cs_link);
247	mtx_unlock_spin(&cpuset_lock);
248}
249
250/*
251 * Complete a deferred release.  Removes the set from the list provided to
252 * cpuset_rel_defer.
253 */
254static void
255cpuset_rel_complete(struct cpuset *set)
256{
257	cpusetid_t id;
258
259	id = set->cs_id;
260	LIST_REMOVE(set, cs_link);
261	cpuset_rel(set->cs_parent);
262	uma_zfree(cpuset_zone, set);
263	if (id != CPUSET_INVALID)
264		free_unr(cpuset_unr, id);
265}
266
267/*
268 * Find a set based on an id.  Returns it with a ref.
269 */
270static struct cpuset *
271cpuset_lookup(cpusetid_t setid, struct thread *td)
272{
273	struct cpuset *set;
274
275	if (setid == CPUSET_INVALID)
276		return (NULL);
277	mtx_lock_spin(&cpuset_lock);
278	LIST_FOREACH(set, &cpuset_ids, cs_link)
279		if (set->cs_id == setid)
280			break;
281	if (set)
282		cpuset_ref(set);
283	mtx_unlock_spin(&cpuset_lock);
284
285	KASSERT(td != NULL, ("[%s:%d] td is NULL", __func__, __LINE__));
286	if (set != NULL && jailed(td->td_ucred)) {
287		struct cpuset *jset, *tset;
288
289		jset = td->td_ucred->cr_prison->pr_cpuset;
290		for (tset = set; tset != NULL; tset = tset->cs_parent)
291			if (tset == jset)
292				break;
293		if (tset == NULL) {
294			cpuset_rel(set);
295			set = NULL;
296		}
297	}
298
299	return (set);
300}
301
302/*
303 * Initialize a set in the space provided in 'set' with the provided parameters.
304 * The set is returned with a single ref.  May return EDEADLK if the set
305 * will have no valid cpu based on restrictions from the parent.
306 */
307static int
308cpuset_init(struct cpuset *set, struct cpuset *parent,
309    const cpuset_t *mask, struct domainset *domain, cpusetid_t id)
310{
311
312	if (domain == NULL)
313		domain = parent->cs_domain;
314	if (mask == NULL)
315		mask = &parent->cs_mask;
316	if (!CPU_OVERLAP(&parent->cs_mask, mask))
317		return (EDEADLK);
318	/* The domain must be prepared ahead of time. */
319	if (!domainset_valid(parent->cs_domain, domain))
320		return (EDEADLK);
321	CPU_COPY(mask, &set->cs_mask);
322	LIST_INIT(&set->cs_children);
323	refcount_init(&set->cs_ref, 1);
324	set->cs_flags = 0;
325	mtx_lock_spin(&cpuset_lock);
326	set->cs_domain = domain;
327	CPU_AND(&set->cs_mask, &parent->cs_mask);
328	set->cs_id = id;
329	set->cs_parent = cpuset_ref(parent);
330	LIST_INSERT_HEAD(&parent->cs_children, set, cs_siblings);
331	if (set->cs_id != CPUSET_INVALID)
332		LIST_INSERT_HEAD(&cpuset_ids, set, cs_link);
333	mtx_unlock_spin(&cpuset_lock);
334
335	return (0);
336}
337
338/*
339 * Create a new non-anonymous set with the requested parent and mask.  May
340 * return failures if the mask is invalid or a new number can not be
341 * allocated.
342 *
343 * If *setp is not NULL, then it will be used as-is.  The caller must take
344 * into account that *setp will be inserted at the head of cpuset_ids and
345 * plan any potentially conflicting cs_link usage accordingly.
346 */
347static int
348cpuset_create(struct cpuset **setp, struct cpuset *parent, const cpuset_t *mask)
349{
350	struct cpuset *set;
351	cpusetid_t id;
352	int error;
353	bool dofree;
354
355	id = alloc_unr(cpuset_unr);
356	if (id == -1)
357		return (ENFILE);
358	dofree = (*setp == NULL);
359	if (*setp != NULL)
360		set = *setp;
361	else
362		*setp = set = uma_zalloc(cpuset_zone, M_WAITOK | M_ZERO);
363	error = cpuset_init(set, parent, mask, NULL, id);
364	if (error == 0)
365		return (0);
366	free_unr(cpuset_unr, id);
367	if (dofree)
368		uma_zfree(cpuset_zone, set);
369
370	return (error);
371}
372
373static void
374cpuset_freelist_add(struct setlist *list, int count)
375{
376	struct cpuset *set;
377	int i;
378
379	for (i = 0; i < count; i++) {
380		set = uma_zalloc(cpuset_zone, M_ZERO | M_WAITOK);
381		LIST_INSERT_HEAD(list, set, cs_link);
382	}
383}
384
385static void
386cpuset_freelist_init(struct setlist *list, int count)
387{
388
389	LIST_INIT(list);
390	cpuset_freelist_add(list, count);
391}
392
393static void
394cpuset_freelist_free(struct setlist *list)
395{
396	struct cpuset *set;
397
398	while ((set = LIST_FIRST(list)) != NULL) {
399		LIST_REMOVE(set, cs_link);
400		uma_zfree(cpuset_zone, set);
401	}
402}
403
404static void
405domainset_freelist_add(struct domainlist *list, int count)
406{
407	struct domainset *set;
408	int i;
409
410	for (i = 0; i < count; i++) {
411		set = uma_zalloc(domainset_zone, M_ZERO | M_WAITOK);
412		LIST_INSERT_HEAD(list, set, ds_link);
413	}
414}
415
416static void
417domainset_freelist_init(struct domainlist *list, int count)
418{
419
420	LIST_INIT(list);
421	domainset_freelist_add(list, count);
422}
423
424static void
425domainset_freelist_free(struct domainlist *list)
426{
427	struct domainset *set;
428
429	while ((set = LIST_FIRST(list)) != NULL) {
430		LIST_REMOVE(set, ds_link);
431		uma_zfree(domainset_zone, set);
432	}
433}
434
435/* Copy a domainset preserving mask and policy. */
436static void
437domainset_copy(const struct domainset *from, struct domainset *to)
438{
439
440	DOMAINSET_COPY(&from->ds_mask, &to->ds_mask);
441	to->ds_policy = from->ds_policy;
442	to->ds_prefer = from->ds_prefer;
443}
444
445/* Return 1 if mask and policy are equal, otherwise 0. */
446static int
447domainset_equal(const struct domainset *one, const struct domainset *two)
448{
449
450	return (DOMAINSET_CMP(&one->ds_mask, &two->ds_mask) == 0 &&
451	    one->ds_policy == two->ds_policy &&
452	    one->ds_prefer == two->ds_prefer);
453}
454
455/* Return 1 if child is a valid subset of parent. */
456static int
457domainset_valid(const struct domainset *parent, const struct domainset *child)
458{
459	if (child->ds_policy != DOMAINSET_POLICY_PREFER)
460		return (DOMAINSET_SUBSET(&parent->ds_mask, &child->ds_mask));
461	return (DOMAINSET_ISSET(child->ds_prefer, &parent->ds_mask));
462}
463
464static int
465domainset_restrict(const struct domainset *parent,
466    const struct domainset *child)
467{
468	if (child->ds_policy != DOMAINSET_POLICY_PREFER)
469		return (DOMAINSET_OVERLAP(&parent->ds_mask, &child->ds_mask));
470	return (DOMAINSET_ISSET(child->ds_prefer, &parent->ds_mask));
471}
472
473/*
474 * Lookup or create a domainset.  The key is provided in ds_mask and
475 * ds_policy.  If the domainset does not yet exist the storage in
476 * 'domain' is used to insert.  Otherwise this storage is freed to the
477 * domainset_zone and the existing domainset is returned.
478 */
479static struct domainset *
480_domainset_create(struct domainset *domain, struct domainlist *freelist)
481{
482	struct domainset *ndomain;
483	int i, j;
484
485	KASSERT(domain->ds_cnt <= vm_ndomains,
486	    ("invalid domain count in domainset %p", domain));
487	KASSERT(domain->ds_policy != DOMAINSET_POLICY_PREFER ||
488	    domain->ds_prefer < vm_ndomains,
489	    ("invalid preferred domain in domains %p", domain));
490
491	mtx_lock_spin(&cpuset_lock);
492	LIST_FOREACH(ndomain, &cpuset_domains, ds_link)
493		if (domainset_equal(ndomain, domain))
494			break;
495	/*
496	 * If the domain does not yet exist we insert it and initialize
497	 * various iteration helpers which are not part of the key.
498	 */
499	if (ndomain == NULL) {
500		LIST_INSERT_HEAD(&cpuset_domains, domain, ds_link);
501		domain->ds_cnt = DOMAINSET_COUNT(&domain->ds_mask);
502		for (i = 0, j = 0; i < DOMAINSET_FLS(&domain->ds_mask); i++)
503			if (DOMAINSET_ISSET(i, &domain->ds_mask))
504				domain->ds_order[j++] = i;
505	}
506	mtx_unlock_spin(&cpuset_lock);
507	if (ndomain == NULL)
508		return (domain);
509	if (freelist != NULL)
510		LIST_INSERT_HEAD(freelist, domain, ds_link);
511	else
512		uma_zfree(domainset_zone, domain);
513	return (ndomain);
514
515}
516
517/*
518 * Are any of the domains in the mask empty?  If so, silently
519 * remove them and update the domainset accordingly.  If only empty
520 * domains are present, we must return failure.
521 */
522static bool
523domainset_empty_vm(struct domainset *domain)
524{
525	domainset_t empty;
526	int i, j;
527
528	DOMAINSET_ZERO(&empty);
529	for (i = 0; i < vm_ndomains; i++)
530		if (VM_DOMAIN_EMPTY(i))
531			DOMAINSET_SET(i, &empty);
532	if (DOMAINSET_SUBSET(&empty, &domain->ds_mask))
533		return (true);
534
535	/* Remove empty domains from the set and recompute. */
536	DOMAINSET_NAND(&domain->ds_mask, &empty);
537	domain->ds_cnt = DOMAINSET_COUNT(&domain->ds_mask);
538	for (i = j = 0; i < DOMAINSET_FLS(&domain->ds_mask); i++)
539		if (DOMAINSET_ISSET(i, &domain->ds_mask))
540			domain->ds_order[j++] = i;
541
542	/* Convert a PREFER policy referencing an empty domain to RR. */
543	if (domain->ds_policy == DOMAINSET_POLICY_PREFER &&
544	    DOMAINSET_ISSET(domain->ds_prefer, &empty)) {
545		domain->ds_policy = DOMAINSET_POLICY_ROUNDROBIN;
546		domain->ds_prefer = -1;
547	}
548
549	return (false);
550}
551
552/*
553 * Create or lookup a domainset based on the key held in 'domain'.
554 */
555struct domainset *
556domainset_create(const struct domainset *domain)
557{
558	struct domainset *ndomain;
559
560	/*
561	 * Validate the policy.  It must specify a useable policy number with
562	 * only valid domains.  Preferred must include the preferred domain
563	 * in the mask.
564	 */
565	if (domain->ds_policy <= DOMAINSET_POLICY_INVALID ||
566	    domain->ds_policy > DOMAINSET_POLICY_MAX)
567		return (NULL);
568	if (domain->ds_policy == DOMAINSET_POLICY_PREFER &&
569	    !DOMAINSET_ISSET(domain->ds_prefer, &domain->ds_mask))
570		return (NULL);
571	if (!DOMAINSET_SUBSET(&domainset0.ds_mask, &domain->ds_mask))
572		return (NULL);
573	ndomain = uma_zalloc(domainset_zone, M_WAITOK | M_ZERO);
574	domainset_copy(domain, ndomain);
575	return _domainset_create(ndomain, NULL);
576}
577
578/*
579 * Update thread domainset pointers.
580 */
581static void
582domainset_notify(void)
583{
584	struct thread *td;
585	struct proc *p;
586
587	sx_slock(&allproc_lock);
588	FOREACH_PROC_IN_SYSTEM(p) {
589		PROC_LOCK(p);
590		if (p->p_state == PRS_NEW) {
591			PROC_UNLOCK(p);
592			continue;
593		}
594		FOREACH_THREAD_IN_PROC(p, td) {
595			thread_lock(td);
596			td->td_domain.dr_policy = td->td_cpuset->cs_domain;
597			thread_unlock(td);
598		}
599		PROC_UNLOCK(p);
600	}
601	sx_sunlock(&allproc_lock);
602	kernel_object->domain.dr_policy = cpuset_kernel->cs_domain;
603}
604
605/*
606 * Create a new set that is a subset of a parent.
607 */
608static struct domainset *
609domainset_shadow(const struct domainset *pdomain,
610    const struct domainset *domain, struct domainlist *freelist)
611{
612	struct domainset *ndomain;
613
614	ndomain = LIST_FIRST(freelist);
615	LIST_REMOVE(ndomain, ds_link);
616
617	/*
618	 * Initialize the key from the request.
619	 */
620	domainset_copy(domain, ndomain);
621
622	/*
623	 * Restrict the key by the parent.
624	 */
625	DOMAINSET_AND(&ndomain->ds_mask, &pdomain->ds_mask);
626
627	return _domainset_create(ndomain, freelist);
628}
629
630/*
631 * Recursively check for errors that would occur from applying mask to
632 * the tree of sets starting at 'set'.  Checks for sets that would become
633 * empty as well as RDONLY flags.
634 */
635static int
636cpuset_testupdate(struct cpuset *set, cpuset_t *mask, int augment_mask)
637{
638	struct cpuset *nset;
639	cpuset_t newmask;
640	int error;
641
642	mtx_assert(&cpuset_lock, MA_OWNED);
643	if (set->cs_flags & CPU_SET_RDONLY)
644		return (EPERM);
645	if (augment_mask) {
646		CPU_COPY(&set->cs_mask, &newmask);
647		CPU_AND(&newmask, mask);
648	} else
649		CPU_COPY(mask, &newmask);
650
651	if (CPU_EMPTY(&newmask))
652		return (EDEADLK);
653	error = 0;
654	LIST_FOREACH(nset, &set->cs_children, cs_siblings)
655		if ((error = cpuset_testupdate(nset, &newmask, 1)) != 0)
656			break;
657	return (error);
658}
659
660/*
661 * Applies the mask 'mask' without checking for empty sets or permissions.
662 */
663static void
664cpuset_update(struct cpuset *set, cpuset_t *mask)
665{
666	struct cpuset *nset;
667
668	mtx_assert(&cpuset_lock, MA_OWNED);
669	CPU_AND(&set->cs_mask, mask);
670	LIST_FOREACH(nset, &set->cs_children, cs_siblings)
671		cpuset_update(nset, &set->cs_mask);
672
673	return;
674}
675
676/*
677 * Modify the set 'set' to use a copy of the mask provided.  Apply this new
678 * mask to restrict all children in the tree.  Checks for validity before
679 * applying the changes.
680 */
681static int
682cpuset_modify(struct cpuset *set, cpuset_t *mask)
683{
684	struct cpuset *root;
685	int error;
686
687	error = priv_check(curthread, PRIV_SCHED_CPUSET);
688	if (error)
689		return (error);
690	/*
691	 * In case we are called from within the jail,
692	 * we do not allow modifying the dedicated root
693	 * cpuset of the jail but may still allow to
694	 * change child sets, including subordinate jails'
695	 * roots.
696	 */
697	if ((set->cs_flags & CPU_SET_ROOT) != 0 &&
698	    jailed(curthread->td_ucred) &&
699	    set == curthread->td_ucred->cr_prison->pr_cpuset)
700		return (EPERM);
701	/*
702	 * Verify that we have access to this set of
703	 * cpus.
704	 */
705	if ((set->cs_flags & (CPU_SET_ROOT | CPU_SET_RDONLY)) == CPU_SET_ROOT) {
706		KASSERT(set->cs_parent != NULL,
707		    ("jail.cpuset=%d is not a proper child of parent jail's root.",
708		    set->cs_id));
709
710		/*
711		 * cpuset_getroot() cannot work here due to how top-level jail
712		 * roots are constructed.  Top-level jails are parented to
713		 * thread0's cpuset (i.e. cpuset 1) rather than the system root.
714		 */
715		root = set->cs_parent;
716	} else {
717		root = cpuset_getroot(set);
718	}
719	mtx_lock_spin(&cpuset_lock);
720	if (root && !CPU_SUBSET(&root->cs_mask, mask)) {
721		error = EINVAL;
722		goto out;
723	}
724	error = cpuset_testupdate(set, mask, 0);
725	if (error)
726		goto out;
727	CPU_COPY(mask, &set->cs_mask);
728	cpuset_update(set, mask);
729out:
730	mtx_unlock_spin(&cpuset_lock);
731
732	return (error);
733}
734
735/*
736 * Recursively check for errors that would occur from applying mask to
737 * the tree of sets starting at 'set'.  Checks for sets that would become
738 * empty as well as RDONLY flags.
739 */
740static int
741cpuset_testupdate_domain(struct cpuset *set, struct domainset *dset,
742    struct domainset *orig, int *count, int augment_mask __unused)
743{
744	struct cpuset *nset;
745	struct domainset *domain;
746	struct domainset newset;
747	int error;
748
749	mtx_assert(&cpuset_lock, MA_OWNED);
750	if (set->cs_flags & CPU_SET_RDONLY)
751		return (EPERM);
752	domain = set->cs_domain;
753	domainset_copy(domain, &newset);
754	if (!domainset_equal(domain, orig)) {
755		if (!domainset_restrict(domain, dset))
756			return (EDEADLK);
757		DOMAINSET_AND(&newset.ds_mask, &dset->ds_mask);
758		/* Count the number of domains that are changing. */
759		(*count)++;
760	}
761	error = 0;
762	LIST_FOREACH(nset, &set->cs_children, cs_siblings)
763		if ((error = cpuset_testupdate_domain(nset, &newset, domain,
764		    count, 1)) != 0)
765			break;
766	return (error);
767}
768
769/*
770 * Applies the mask 'mask' without checking for empty sets or permissions.
771 */
772static void
773cpuset_update_domain(struct cpuset *set, struct domainset *domain,
774    struct domainset *orig, struct domainlist *domains)
775{
776	struct cpuset *nset;
777
778	mtx_assert(&cpuset_lock, MA_OWNED);
779	/*
780	 * If this domainset has changed from the parent we must calculate
781	 * a new set.  Otherwise it simply inherits from the parent.  When
782	 * we inherit from the parent we get a new mask and policy.  If the
783	 * set is modified from the parent we keep the policy and only
784	 * update the mask.
785	 */
786	if (set->cs_domain != orig) {
787		orig = set->cs_domain;
788		set->cs_domain = domainset_shadow(domain, orig, domains);
789	} else
790		set->cs_domain = domain;
791	LIST_FOREACH(nset, &set->cs_children, cs_siblings)
792		cpuset_update_domain(nset, set->cs_domain, orig, domains);
793
794	return;
795}
796
797/*
798 * Modify the set 'set' to use a copy the domainset provided.  Apply this new
799 * mask to restrict all children in the tree.  Checks for validity before
800 * applying the changes.
801 */
802static int
803cpuset_modify_domain(struct cpuset *set, struct domainset *domain)
804{
805	struct domainlist domains;
806	struct domainset temp;
807	struct domainset *dset;
808	struct cpuset *root;
809	int ndomains, needed;
810	int error;
811
812	error = priv_check(curthread, PRIV_SCHED_CPUSET);
813	if (error)
814		return (error);
815	/*
816	 * In case we are called from within the jail
817	 * we do not allow modifying the dedicated root
818	 * cpuset of the jail but may still allow to
819	 * change child sets.
820	 */
821	if (jailed(curthread->td_ucred) &&
822	    set->cs_flags & CPU_SET_ROOT)
823		return (EPERM);
824	domainset_freelist_init(&domains, 0);
825	domain = domainset_create(domain);
826	ndomains = 0;
827
828	mtx_lock_spin(&cpuset_lock);
829	for (;;) {
830		root = cpuset_getroot(set);
831		dset = root->cs_domain;
832		/*
833		 * Verify that we have access to this set of domains.
834		 */
835		if (!domainset_valid(dset, domain)) {
836			error = EINVAL;
837			goto out;
838		}
839		/*
840		 * If applying prefer we keep the current set as the fallback.
841		 */
842		if (domain->ds_policy == DOMAINSET_POLICY_PREFER)
843			DOMAINSET_COPY(&set->cs_domain->ds_mask,
844			    &domain->ds_mask);
845		/*
846		 * Determine whether we can apply this set of domains and
847		 * how many new domain structures it will require.
848		 */
849		domainset_copy(domain, &temp);
850		needed = 0;
851		error = cpuset_testupdate_domain(set, &temp, set->cs_domain,
852		    &needed, 0);
853		if (error)
854			goto out;
855		if (ndomains >= needed)
856			break;
857
858		/* Dropping the lock; we'll need to re-evaluate again. */
859		mtx_unlock_spin(&cpuset_lock);
860		domainset_freelist_add(&domains, needed - ndomains);
861		ndomains = needed;
862		mtx_lock_spin(&cpuset_lock);
863	}
864	dset = set->cs_domain;
865	cpuset_update_domain(set, domain, dset, &domains);
866out:
867	mtx_unlock_spin(&cpuset_lock);
868	domainset_freelist_free(&domains);
869	if (error == 0)
870		domainset_notify();
871
872	return (error);
873}
874
875/*
876 * Resolve the 'which' parameter of several cpuset apis.
877 *
878 * For WHICH_PID and WHICH_TID return a locked proc and valid proc/tid.  Also
879 * checks for permission via p_cansched().
880 *
881 * For WHICH_SET returns a valid set with a new reference.
882 *
883 * -1 may be supplied for any argument to mean the current proc/thread or
884 * the base set of the current thread.  May fail with ESRCH/EPERM.
885 */
886int
887cpuset_which(cpuwhich_t which, id_t id, struct proc **pp, struct thread **tdp,
888    struct cpuset **setp)
889{
890	struct cpuset *set;
891	struct thread *td;
892	struct proc *p;
893	int error;
894
895	*pp = p = NULL;
896	*tdp = td = NULL;
897	*setp = set = NULL;
898	switch (which) {
899	case CPU_WHICH_PID:
900		if (id == -1) {
901			PROC_LOCK(curproc);
902			p = curproc;
903			break;
904		}
905		if ((p = pfind(id)) == NULL)
906			return (ESRCH);
907		break;
908	case CPU_WHICH_TID:
909		if (id == -1) {
910			PROC_LOCK(curproc);
911			p = curproc;
912			td = curthread;
913			break;
914		}
915		td = tdfind(id, -1);
916		if (td == NULL)
917			return (ESRCH);
918		p = td->td_proc;
919		break;
920	case CPU_WHICH_CPUSET:
921		if (id == -1) {
922			thread_lock(curthread);
923			set = cpuset_refbase(curthread->td_cpuset);
924			thread_unlock(curthread);
925		} else
926			set = cpuset_lookup(id, curthread);
927		if (set) {
928			*setp = set;
929			return (0);
930		}
931		return (ESRCH);
932	case CPU_WHICH_JAIL:
933	{
934		/* Find `set' for prison with given id. */
935		struct prison *pr;
936
937		sx_slock(&allprison_lock);
938		pr = prison_find_child(curthread->td_ucred->cr_prison, id);
939		sx_sunlock(&allprison_lock);
940		if (pr == NULL)
941			return (ESRCH);
942		cpuset_ref(pr->pr_cpuset);
943		*setp = pr->pr_cpuset;
944		mtx_unlock(&pr->pr_mtx);
945		return (0);
946	}
947	case CPU_WHICH_IRQ:
948	case CPU_WHICH_DOMAIN:
949		return (0);
950	default:
951		return (EINVAL);
952	}
953	error = p_cansched(curthread, p);
954	if (error) {
955		PROC_UNLOCK(p);
956		return (error);
957	}
958	if (td == NULL)
959		td = FIRST_THREAD_IN_PROC(p);
960	*pp = p;
961	*tdp = td;
962	return (0);
963}
964
965static int
966cpuset_testshadow(struct cpuset *set, const cpuset_t *mask,
967    const struct domainset *domain)
968{
969	struct cpuset *parent;
970	struct domainset *dset;
971
972	parent = cpuset_getbase(set);
973	/*
974	 * If we are restricting a cpu mask it must be a subset of the
975	 * parent or invalid CPUs have been specified.
976	 */
977	if (mask != NULL && !CPU_SUBSET(&parent->cs_mask, mask))
978		return (EINVAL);
979
980	/*
981	 * If we are restricting a domain mask it must be a subset of the
982	 * parent or invalid domains have been specified.
983	 */
984	dset = parent->cs_domain;
985	if (domain != NULL && !domainset_valid(dset, domain))
986		return (EINVAL);
987
988	return (0);
989}
990
991/*
992 * Create an anonymous set with the provided mask in the space provided by
993 * 'nset'.  If the passed in set is anonymous we use its parent otherwise
994 * the new set is a child of 'set'.
995 */
996static int
997cpuset_shadow(struct cpuset *set, struct cpuset **nsetp,
998   const cpuset_t *mask, const struct domainset *domain,
999   struct setlist *cpusets, struct domainlist *domains)
1000{
1001	struct cpuset *parent;
1002	struct cpuset *nset;
1003	struct domainset *dset;
1004	struct domainset *d;
1005	int error;
1006
1007	error = cpuset_testshadow(set, mask, domain);
1008	if (error)
1009		return (error);
1010
1011	parent = cpuset_getbase(set);
1012	dset = parent->cs_domain;
1013	if (mask == NULL)
1014		mask = &set->cs_mask;
1015	if (domain != NULL)
1016		d = domainset_shadow(dset, domain, domains);
1017	else
1018		d = set->cs_domain;
1019	nset = LIST_FIRST(cpusets);
1020	error = cpuset_init(nset, parent, mask, d, CPUSET_INVALID);
1021	if (error == 0) {
1022		LIST_REMOVE(nset, cs_link);
1023		*nsetp = nset;
1024	}
1025	return (error);
1026}
1027
1028static struct cpuset *
1029cpuset_update_thread(struct thread *td, struct cpuset *nset)
1030{
1031	struct cpuset *tdset;
1032
1033	tdset = td->td_cpuset;
1034	td->td_cpuset = nset;
1035	td->td_domain.dr_policy = nset->cs_domain;
1036	sched_affinity(td);
1037
1038	return (tdset);
1039}
1040
1041static int
1042cpuset_setproc_test_maskthread(struct cpuset *tdset, cpuset_t *mask,
1043    struct domainset *domain)
1044{
1045	struct cpuset *parent;
1046
1047	parent = cpuset_getbase(tdset);
1048	if (mask == NULL)
1049		mask = &tdset->cs_mask;
1050	if (domain == NULL)
1051		domain = tdset->cs_domain;
1052	return cpuset_testshadow(parent, mask, domain);
1053}
1054
1055static int
1056cpuset_setproc_maskthread(struct cpuset *tdset, cpuset_t *mask,
1057    struct domainset *domain, struct cpuset **nsetp,
1058    struct setlist *freelist, struct domainlist *domainlist)
1059{
1060	struct cpuset *parent;
1061
1062	parent = cpuset_getbase(tdset);
1063	if (mask == NULL)
1064		mask = &tdset->cs_mask;
1065	if (domain == NULL)
1066		domain = tdset->cs_domain;
1067	return cpuset_shadow(parent, nsetp, mask, domain, freelist,
1068	    domainlist);
1069}
1070
1071static int
1072cpuset_setproc_setthread_mask(struct cpuset *tdset, struct cpuset *set,
1073    cpuset_t *mask, struct domainset *domain)
1074{
1075	struct cpuset *parent;
1076
1077	parent = cpuset_getbase(tdset);
1078
1079	/*
1080	 * If the thread restricted its mask then apply that same
1081	 * restriction to the new set, otherwise take it wholesale.
1082	 */
1083	if (CPU_CMP(&tdset->cs_mask, &parent->cs_mask) != 0) {
1084		CPU_COPY(&tdset->cs_mask, mask);
1085		CPU_AND(mask, &set->cs_mask);
1086	} else
1087		CPU_COPY(&set->cs_mask, mask);
1088
1089	/*
1090	 * If the thread restricted the domain then we apply the
1091	 * restriction to the new set but retain the policy.
1092	 */
1093	if (tdset->cs_domain != parent->cs_domain) {
1094		domainset_copy(tdset->cs_domain, domain);
1095		DOMAINSET_AND(&domain->ds_mask, &set->cs_domain->ds_mask);
1096	} else
1097		domainset_copy(set->cs_domain, domain);
1098
1099	if (CPU_EMPTY(mask) || DOMAINSET_EMPTY(&domain->ds_mask))
1100		return (EDEADLK);
1101
1102	return (0);
1103}
1104
1105static int
1106cpuset_setproc_test_setthread(struct cpuset *tdset, struct cpuset *set)
1107{
1108	struct domainset domain;
1109	cpuset_t mask;
1110
1111	if (tdset->cs_id != CPUSET_INVALID)
1112		return (0);
1113	return cpuset_setproc_setthread_mask(tdset, set, &mask, &domain);
1114}
1115
1116static int
1117cpuset_setproc_setthread(struct cpuset *tdset, struct cpuset *set,
1118    struct cpuset **nsetp, struct setlist *freelist,
1119    struct domainlist *domainlist)
1120{
1121	struct domainset domain;
1122	cpuset_t mask;
1123	int error;
1124
1125	/*
1126	 * If we're replacing on a thread that has not constrained the
1127	 * original set we can simply accept the new set.
1128	 */
1129	if (tdset->cs_id != CPUSET_INVALID) {
1130		*nsetp = cpuset_ref(set);
1131		return (0);
1132	}
1133	error = cpuset_setproc_setthread_mask(tdset, set, &mask, &domain);
1134	if (error)
1135		return (error);
1136
1137	return cpuset_shadow(set, nsetp, &mask, &domain, freelist,
1138	    domainlist);
1139}
1140
1141/*
1142 * Handle three cases for updating an entire process.
1143 *
1144 * 1) Set is non-null.  This reparents all anonymous sets to the provided
1145 *    set and replaces all non-anonymous td_cpusets with the provided set.
1146 * 2) Mask is non-null.  This replaces or creates anonymous sets for every
1147 *    thread with the existing base as a parent.
1148 * 3) domain is non-null.  This creates anonymous sets for every thread
1149 *    and replaces the domain set.
1150 *
1151 * This is overly complicated because we can't allocate while holding a
1152 * spinlock and spinlocks must be held while changing and examining thread
1153 * state.
1154 */
1155static int
1156cpuset_setproc(pid_t pid, struct cpuset *set, cpuset_t *mask,
1157    struct domainset *domain)
1158{
1159	struct setlist freelist;
1160	struct setlist droplist;
1161	struct domainlist domainlist;
1162	struct cpuset *nset;
1163	struct thread *td;
1164	struct proc *p;
1165	int threads;
1166	int nfree;
1167	int error;
1168
1169	/*
1170	 * The algorithm requires two passes due to locking considerations.
1171	 *
1172	 * 1) Lookup the process and acquire the locks in the required order.
1173	 * 2) If enough cpusets have not been allocated release the locks and
1174	 *    allocate them.  Loop.
1175	 */
1176	cpuset_freelist_init(&freelist, 1);
1177	domainset_freelist_init(&domainlist, 1);
1178	nfree = 1;
1179	LIST_INIT(&droplist);
1180	nfree = 0;
1181	for (;;) {
1182		error = cpuset_which(CPU_WHICH_PID, pid, &p, &td, &nset);
1183		if (error)
1184			goto out;
1185		if (nfree >= p->p_numthreads)
1186			break;
1187		threads = p->p_numthreads;
1188		PROC_UNLOCK(p);
1189		if (nfree < threads) {
1190			cpuset_freelist_add(&freelist, threads - nfree);
1191			domainset_freelist_add(&domainlist, threads - nfree);
1192			nfree = threads;
1193		}
1194	}
1195	PROC_LOCK_ASSERT(p, MA_OWNED);
1196	/*
1197	 * Now that the appropriate locks are held and we have enough cpusets,
1198	 * make sure the operation will succeed before applying changes. The
1199	 * proc lock prevents td_cpuset from changing between calls.
1200	 */
1201	error = 0;
1202	FOREACH_THREAD_IN_PROC(p, td) {
1203		thread_lock(td);
1204		if (set != NULL)
1205			error = cpuset_setproc_test_setthread(td->td_cpuset,
1206			    set);
1207		else
1208			error = cpuset_setproc_test_maskthread(td->td_cpuset,
1209			    mask, domain);
1210		thread_unlock(td);
1211		if (error)
1212			goto unlock_out;
1213	}
1214	/*
1215	 * Replace each thread's cpuset while using deferred release.  We
1216	 * must do this because the thread lock must be held while operating
1217	 * on the thread and this limits the type of operations allowed.
1218	 */
1219	FOREACH_THREAD_IN_PROC(p, td) {
1220		thread_lock(td);
1221		if (set != NULL)
1222			error = cpuset_setproc_setthread(td->td_cpuset, set,
1223			    &nset, &freelist, &domainlist);
1224		else
1225			error = cpuset_setproc_maskthread(td->td_cpuset, mask,
1226			    domain, &nset, &freelist, &domainlist);
1227		if (error) {
1228			thread_unlock(td);
1229			break;
1230		}
1231		cpuset_rel_defer(&droplist, cpuset_update_thread(td, nset));
1232		thread_unlock(td);
1233	}
1234unlock_out:
1235	PROC_UNLOCK(p);
1236out:
1237	while ((nset = LIST_FIRST(&droplist)) != NULL)
1238		cpuset_rel_complete(nset);
1239	cpuset_freelist_free(&freelist);
1240	domainset_freelist_free(&domainlist);
1241	return (error);
1242}
1243
1244static int
1245bitset_strprint(char *buf, size_t bufsiz, const struct bitset *set, int setlen)
1246{
1247	size_t bytes;
1248	int i, once;
1249	char *p;
1250
1251	once = 0;
1252	p = buf;
1253	for (i = 0; i < __bitset_words(setlen); i++) {
1254		if (once != 0) {
1255			if (bufsiz < 1)
1256				return (0);
1257			*p = ',';
1258			p++;
1259			bufsiz--;
1260		} else
1261			once = 1;
1262		if (bufsiz < sizeof(__STRING(ULONG_MAX)))
1263			return (0);
1264		bytes = snprintf(p, bufsiz, "%lx", set->__bits[i]);
1265		p += bytes;
1266		bufsiz -= bytes;
1267	}
1268	return (p - buf);
1269}
1270
1271static int
1272bitset_strscan(struct bitset *set, int setlen, const char *buf)
1273{
1274	int i, ret;
1275	const char *p;
1276
1277	BIT_ZERO(setlen, set);
1278	p = buf;
1279	for (i = 0; i < __bitset_words(setlen); i++) {
1280		if (*p == ',') {
1281			p++;
1282			continue;
1283		}
1284		ret = sscanf(p, "%lx", &set->__bits[i]);
1285		if (ret == 0 || ret == -1)
1286			break;
1287		while (isxdigit(*p))
1288			p++;
1289	}
1290	return (p - buf);
1291}
1292
1293/*
1294 * Return a string representing a valid layout for a cpuset_t object.
1295 * It expects an incoming buffer at least sized as CPUSETBUFSIZ.
1296 */
1297char *
1298cpusetobj_strprint(char *buf, const cpuset_t *set)
1299{
1300
1301	bitset_strprint(buf, CPUSETBUFSIZ, (const struct bitset *)set,
1302	    CPU_SETSIZE);
1303	return (buf);
1304}
1305
1306/*
1307 * Build a valid cpuset_t object from a string representation.
1308 * It expects an incoming buffer at least sized as CPUSETBUFSIZ.
1309 */
1310int
1311cpusetobj_strscan(cpuset_t *set, const char *buf)
1312{
1313	char p;
1314
1315	if (strlen(buf) > CPUSETBUFSIZ - 1)
1316		return (-1);
1317
1318	p = buf[bitset_strscan((struct bitset *)set, CPU_SETSIZE, buf)];
1319	if (p != '\0')
1320		return (-1);
1321
1322	return (0);
1323}
1324
1325/*
1326 * Handle a domainset specifier in the sysctl tree.  A poiner to a pointer to
1327 * a domainset is in arg1.  If the user specifies a valid domainset the
1328 * pointer is updated.
1329 *
1330 * Format is:
1331 * hex mask word 0,hex mask word 1,...:decimal policy:decimal preferred
1332 */
1333int
1334sysctl_handle_domainset(SYSCTL_HANDLER_ARGS)
1335{
1336	char buf[DOMAINSETBUFSIZ];
1337	struct domainset *dset;
1338	struct domainset key;
1339	int policy, prefer, error;
1340	char *p;
1341
1342	dset = *(struct domainset **)arg1;
1343	error = 0;
1344
1345	if (dset != NULL) {
1346		p = buf + bitset_strprint(buf, DOMAINSETBUFSIZ,
1347		    (const struct bitset *)&dset->ds_mask, DOMAINSET_SETSIZE);
1348		sprintf(p, ":%d:%d", dset->ds_policy, dset->ds_prefer);
1349	} else
1350		sprintf(buf, "<NULL>");
1351	error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
1352	if (error != 0 || req->newptr == NULL)
1353		return (error);
1354
1355	/*
1356	 * Read in and validate the string.
1357	 */
1358	memset(&key, 0, sizeof(key));
1359	p = &buf[bitset_strscan((struct bitset *)&key.ds_mask,
1360	    DOMAINSET_SETSIZE, buf)];
1361	if (p == buf)
1362		return (EINVAL);
1363	if (sscanf(p, ":%d:%d", &policy, &prefer) != 2)
1364		return (EINVAL);
1365	key.ds_policy = policy;
1366	key.ds_prefer = prefer;
1367
1368	/* Domainset_create() validates the policy.*/
1369	dset = domainset_create(&key);
1370	if (dset == NULL)
1371		return (EINVAL);
1372	*(struct domainset **)arg1 = dset;
1373
1374	return (error);
1375}
1376
1377/*
1378 * Apply an anonymous mask or a domain to a single thread.
1379 */
1380static int
1381_cpuset_setthread(lwpid_t id, cpuset_t *mask, struct domainset *domain)
1382{
1383	struct setlist cpusets;
1384	struct domainlist domainlist;
1385	struct cpuset *nset;
1386	struct cpuset *set;
1387	struct thread *td;
1388	struct proc *p;
1389	int error;
1390
1391	cpuset_freelist_init(&cpusets, 1);
1392	domainset_freelist_init(&domainlist, domain != NULL);
1393	error = cpuset_which(CPU_WHICH_TID, id, &p, &td, &set);
1394	if (error)
1395		goto out;
1396	set = NULL;
1397	thread_lock(td);
1398	error = cpuset_shadow(td->td_cpuset, &nset, mask, domain,
1399	    &cpusets, &domainlist);
1400	if (error == 0)
1401		set = cpuset_update_thread(td, nset);
1402	thread_unlock(td);
1403	PROC_UNLOCK(p);
1404	if (set)
1405		cpuset_rel(set);
1406out:
1407	cpuset_freelist_free(&cpusets);
1408	domainset_freelist_free(&domainlist);
1409	return (error);
1410}
1411
1412/*
1413 * Apply an anonymous mask to a single thread.
1414 */
1415int
1416cpuset_setthread(lwpid_t id, cpuset_t *mask)
1417{
1418
1419	return _cpuset_setthread(id, mask, NULL);
1420}
1421
1422/*
1423 * Apply new cpumask to the ithread.
1424 */
1425int
1426cpuset_setithread(lwpid_t id, int cpu)
1427{
1428	cpuset_t mask;
1429
1430	CPU_ZERO(&mask);
1431	if (cpu == NOCPU)
1432		CPU_COPY(cpuset_root, &mask);
1433	else
1434		CPU_SET(cpu, &mask);
1435	return _cpuset_setthread(id, &mask, NULL);
1436}
1437
1438/*
1439 * Initialize static domainsets after NUMA information is available.  This is
1440 * called before memory allocators are initialized.
1441 */
1442void
1443domainset_init(void)
1444{
1445	struct domainset *dset;
1446	int i;
1447
1448	dset = &domainset_roundrobin;
1449	DOMAINSET_COPY(&all_domains, &dset->ds_mask);
1450	dset->ds_policy = DOMAINSET_POLICY_ROUNDROBIN;
1451	dset->ds_prefer = -1;
1452	_domainset_create(dset, NULL);
1453
1454	for (i = 0; i < vm_ndomains; i++) {
1455		dset = &domainset_fixed[i];
1456		DOMAINSET_ZERO(&dset->ds_mask);
1457		DOMAINSET_SET(i, &dset->ds_mask);
1458		dset->ds_policy = DOMAINSET_POLICY_ROUNDROBIN;
1459		_domainset_create(dset, NULL);
1460
1461		dset = &domainset_prefer[i];
1462		DOMAINSET_COPY(&all_domains, &dset->ds_mask);
1463		dset->ds_policy = DOMAINSET_POLICY_PREFER;
1464		dset->ds_prefer = i;
1465		_domainset_create(dset, NULL);
1466	}
1467}
1468
1469/*
1470 * Create the domainset for cpuset 0, 1 and cpuset 2.
1471 */
1472void
1473domainset_zero(void)
1474{
1475	struct domainset *dset, *tmp;
1476
1477	mtx_init(&cpuset_lock, "cpuset", NULL, MTX_SPIN | MTX_RECURSE);
1478
1479	dset = &domainset0;
1480	DOMAINSET_COPY(&all_domains, &dset->ds_mask);
1481	dset->ds_policy = DOMAINSET_POLICY_FIRSTTOUCH;
1482	dset->ds_prefer = -1;
1483	curthread->td_domain.dr_policy = _domainset_create(dset, NULL);
1484
1485	domainset_copy(dset, &domainset2);
1486	domainset2.ds_policy = DOMAINSET_POLICY_INTERLEAVE;
1487	kernel_object->domain.dr_policy = _domainset_create(&domainset2, NULL);
1488
1489	/* Remove empty domains from the global policies. */
1490	LIST_FOREACH_SAFE(dset, &cpuset_domains, ds_link, tmp)
1491		if (domainset_empty_vm(dset))
1492			LIST_REMOVE(dset, ds_link);
1493}
1494
1495/*
1496 * Creates system-wide cpusets and the cpuset for thread0 including three
1497 * sets:
1498 *
1499 * 0 - The root set which should represent all valid processors in the
1500 *     system.  This set is immutable.
1501 * 1 - The default set which all processes are a member of until changed.
1502 *     This allows an administrator to move all threads off of given cpus to
1503 *     dedicate them to high priority tasks or save power etc.
1504 * 2 - The kernel set which allows restriction and policy to be applied only
1505 *     to kernel threads and the kernel_object.
1506 */
1507struct cpuset *
1508cpuset_thread0(void)
1509{
1510	struct cpuset *set;
1511	int i;
1512	int error __unused;
1513
1514	cpuset_zone = uma_zcreate("cpuset", sizeof(struct cpuset), NULL, NULL,
1515	    NULL, NULL, UMA_ALIGN_CACHE, 0);
1516	domainset_zone = uma_zcreate("domainset", sizeof(struct domainset),
1517	    NULL, NULL, NULL, NULL, UMA_ALIGN_CACHE, 0);
1518
1519	/*
1520	 * Create the root system set (0) for the whole machine.  Doesn't use
1521	 * cpuset_create() due to NULL parent.
1522	 */
1523	set = uma_zalloc(cpuset_zone, M_WAITOK | M_ZERO);
1524	CPU_COPY(&all_cpus, &set->cs_mask);
1525	LIST_INIT(&set->cs_children);
1526	LIST_INSERT_HEAD(&cpuset_ids, set, cs_link);
1527	refcount_init(&set->cs_ref, 1);
1528	set->cs_flags = CPU_SET_ROOT | CPU_SET_RDONLY;
1529	set->cs_domain = &domainset0;
1530	cpuset_zero = set;
1531	cpuset_root = &set->cs_mask;
1532
1533	/*
1534	 * Now derive a default (1), modifiable set from that to give out.
1535	 */
1536	set = uma_zalloc(cpuset_zone, M_WAITOK | M_ZERO);
1537	error = cpuset_init(set, cpuset_zero, NULL, NULL, 1);
1538	KASSERT(error == 0, ("Error creating default set: %d\n", error));
1539	cpuset_default = set;
1540	/*
1541	 * Create the kernel set (2).
1542	 */
1543	set = uma_zalloc(cpuset_zone, M_WAITOK | M_ZERO);
1544	error = cpuset_init(set, cpuset_zero, NULL, NULL, 2);
1545	KASSERT(error == 0, ("Error creating kernel set: %d\n", error));
1546	set->cs_domain = &domainset2;
1547	cpuset_kernel = set;
1548
1549	/*
1550	 * Initialize the unit allocator. 0 and 1 are allocated above.
1551	 */
1552	cpuset_unr = new_unrhdr(3, INT_MAX, NULL);
1553
1554	/*
1555	 * If MD code has not initialized per-domain cpusets, place all
1556	 * CPUs in domain 0.
1557	 */
1558	for (i = 0; i < MAXMEMDOM; i++)
1559		if (!CPU_EMPTY(&cpuset_domain[i]))
1560			goto domains_set;
1561	CPU_COPY(&all_cpus, &cpuset_domain[0]);
1562domains_set:
1563
1564	return (cpuset_default);
1565}
1566
1567void
1568cpuset_kernthread(struct thread *td)
1569{
1570	struct cpuset *set;
1571
1572	thread_lock(td);
1573	set = td->td_cpuset;
1574	td->td_cpuset = cpuset_ref(cpuset_kernel);
1575	thread_unlock(td);
1576	cpuset_rel(set);
1577}
1578
1579/*
1580 * Create a cpuset, which would be cpuset_create() but
1581 * mark the new 'set' as root.
1582 *
1583 * We are not going to reparent the td to it.  Use cpuset_setproc_update_set()
1584 * for that.
1585 *
1586 * In case of no error, returns the set in *setp locked with a reference.
1587 */
1588int
1589cpuset_create_root(struct prison *pr, struct cpuset **setp)
1590{
1591	struct cpuset *set;
1592	int error;
1593
1594	KASSERT(pr != NULL, ("[%s:%d] invalid pr", __func__, __LINE__));
1595	KASSERT(setp != NULL, ("[%s:%d] invalid setp", __func__, __LINE__));
1596
1597	set = NULL;
1598	error = cpuset_create(&set, pr->pr_cpuset, &pr->pr_cpuset->cs_mask);
1599	if (error)
1600		return (error);
1601
1602	KASSERT(set != NULL, ("[%s:%d] cpuset_create returned invalid data",
1603	    __func__, __LINE__));
1604
1605	/* Mark the set as root. */
1606	set->cs_flags |= CPU_SET_ROOT;
1607	*setp = set;
1608
1609	return (0);
1610}
1611
1612int
1613cpuset_setproc_update_set(struct proc *p, struct cpuset *set)
1614{
1615	int error;
1616
1617	KASSERT(p != NULL, ("[%s:%d] invalid proc", __func__, __LINE__));
1618	KASSERT(set != NULL, ("[%s:%d] invalid set", __func__, __LINE__));
1619
1620	cpuset_ref(set);
1621	error = cpuset_setproc(p->p_pid, set, NULL, NULL);
1622	if (error)
1623		return (error);
1624	cpuset_rel(set);
1625	return (0);
1626}
1627
1628/*
1629 * In Capability mode, the only accesses that are permitted are to the current
1630 * thread and process' CPU and domain sets.
1631 */
1632static int
1633cpuset_check_capabilities(struct thread *td, cpulevel_t level, cpuwhich_t which,
1634    id_t id)
1635{
1636	if (IN_CAPABILITY_MODE(td)) {
1637		if (level != CPU_LEVEL_WHICH)
1638			return (ECAPMODE);
1639		if (which != CPU_WHICH_TID && which != CPU_WHICH_PID)
1640			return (ECAPMODE);
1641		if (id != -1 &&
1642		    !(which == CPU_WHICH_TID && id == td->td_tid) &&
1643		    !(which == CPU_WHICH_PID && id == td->td_proc->p_pid))
1644			return (ECAPMODE);
1645	}
1646	return (0);
1647}
1648
1649#ifndef _SYS_SYSPROTO_H_
1650struct cpuset_args {
1651	cpusetid_t	*setid;
1652};
1653#endif
1654int
1655sys_cpuset(struct thread *td, struct cpuset_args *uap)
1656{
1657	struct cpuset *root;
1658	struct cpuset *set;
1659	int error;
1660
1661	thread_lock(td);
1662	root = cpuset_refroot(td->td_cpuset);
1663	thread_unlock(td);
1664	set = NULL;
1665	error = cpuset_create(&set, root, &root->cs_mask);
1666	cpuset_rel(root);
1667	if (error)
1668		return (error);
1669	error = copyout(&set->cs_id, uap->setid, sizeof(set->cs_id));
1670	if (error == 0)
1671		error = cpuset_setproc(-1, set, NULL, NULL);
1672	cpuset_rel(set);
1673	return (error);
1674}
1675
1676#ifndef _SYS_SYSPROTO_H_
1677struct cpuset_setid_args {
1678	cpuwhich_t	which;
1679	id_t		id;
1680	cpusetid_t	setid;
1681};
1682#endif
1683int
1684sys_cpuset_setid(struct thread *td, struct cpuset_setid_args *uap)
1685{
1686
1687	return (kern_cpuset_setid(td, uap->which, uap->id, uap->setid));
1688}
1689
1690int
1691kern_cpuset_setid(struct thread *td, cpuwhich_t which,
1692    id_t id, cpusetid_t setid)
1693{
1694	struct cpuset *set;
1695	int error;
1696
1697	/*
1698	 * Presently we only support per-process sets.
1699	 */
1700	if (which != CPU_WHICH_PID)
1701		return (EINVAL);
1702	set = cpuset_lookup(setid, td);
1703	if (set == NULL)
1704		return (ESRCH);
1705	error = cpuset_setproc(id, set, NULL, NULL);
1706	cpuset_rel(set);
1707	return (error);
1708}
1709
1710#ifndef _SYS_SYSPROTO_H_
1711struct cpuset_getid_args {
1712	cpulevel_t	level;
1713	cpuwhich_t	which;
1714	id_t		id;
1715	cpusetid_t	*setid;
1716};
1717#endif
1718int
1719sys_cpuset_getid(struct thread *td, struct cpuset_getid_args *uap)
1720{
1721
1722	return (kern_cpuset_getid(td, uap->level, uap->which, uap->id,
1723	    uap->setid));
1724}
1725
1726int
1727kern_cpuset_getid(struct thread *td, cpulevel_t level, cpuwhich_t which,
1728    id_t id, cpusetid_t *setid)
1729{
1730	struct cpuset *nset;
1731	struct cpuset *set;
1732	struct thread *ttd;
1733	struct proc *p;
1734	cpusetid_t tmpid;
1735	int error;
1736
1737	if (level == CPU_LEVEL_WHICH && which != CPU_WHICH_CPUSET)
1738		return (EINVAL);
1739	error = cpuset_which(which, id, &p, &ttd, &set);
1740	if (error)
1741		return (error);
1742	switch (which) {
1743	case CPU_WHICH_TID:
1744	case CPU_WHICH_PID:
1745		thread_lock(ttd);
1746		set = cpuset_refbase(ttd->td_cpuset);
1747		thread_unlock(ttd);
1748		PROC_UNLOCK(p);
1749		break;
1750	case CPU_WHICH_CPUSET:
1751	case CPU_WHICH_JAIL:
1752		break;
1753	case CPU_WHICH_IRQ:
1754	case CPU_WHICH_DOMAIN:
1755		return (EINVAL);
1756	}
1757	switch (level) {
1758	case CPU_LEVEL_ROOT:
1759		nset = cpuset_refroot(set);
1760		cpuset_rel(set);
1761		set = nset;
1762		break;
1763	case CPU_LEVEL_CPUSET:
1764		break;
1765	case CPU_LEVEL_WHICH:
1766		break;
1767	}
1768	tmpid = set->cs_id;
1769	cpuset_rel(set);
1770	if (error == 0)
1771		error = copyout(&tmpid, setid, sizeof(tmpid));
1772
1773	return (error);
1774}
1775
1776#ifndef _SYS_SYSPROTO_H_
1777struct cpuset_getaffinity_args {
1778	cpulevel_t	level;
1779	cpuwhich_t	which;
1780	id_t		id;
1781	size_t		cpusetsize;
1782	cpuset_t	*mask;
1783};
1784#endif
1785int
1786sys_cpuset_getaffinity(struct thread *td, struct cpuset_getaffinity_args *uap)
1787{
1788
1789	return (kern_cpuset_getaffinity(td, uap->level, uap->which,
1790	    uap->id, uap->cpusetsize, uap->mask));
1791}
1792
1793int
1794kern_cpuset_getaffinity(struct thread *td, cpulevel_t level, cpuwhich_t which,
1795    id_t id, size_t cpusetsize, cpuset_t *maskp)
1796{
1797	struct thread *ttd;
1798	struct cpuset *nset;
1799	struct cpuset *set;
1800	struct proc *p;
1801	cpuset_t *mask;
1802	int error;
1803	size_t size;
1804
1805	if (cpusetsize < sizeof(cpuset_t) || cpusetsize > CPU_MAXSIZE / NBBY)
1806		return (ERANGE);
1807	error = cpuset_check_capabilities(td, level, which, id);
1808	if (error != 0)
1809		return (error);
1810	size = cpusetsize;
1811	mask = malloc(size, M_TEMP, M_WAITOK | M_ZERO);
1812	error = cpuset_which(which, id, &p, &ttd, &set);
1813	if (error)
1814		goto out;
1815	switch (level) {
1816	case CPU_LEVEL_ROOT:
1817	case CPU_LEVEL_CPUSET:
1818		switch (which) {
1819		case CPU_WHICH_TID:
1820		case CPU_WHICH_PID:
1821			thread_lock(ttd);
1822			set = cpuset_ref(ttd->td_cpuset);
1823			thread_unlock(ttd);
1824			break;
1825		case CPU_WHICH_CPUSET:
1826		case CPU_WHICH_JAIL:
1827			break;
1828		case CPU_WHICH_IRQ:
1829		case CPU_WHICH_INTRHANDLER:
1830		case CPU_WHICH_ITHREAD:
1831		case CPU_WHICH_DOMAIN:
1832			error = EINVAL;
1833			goto out;
1834		}
1835		if (level == CPU_LEVEL_ROOT)
1836			nset = cpuset_refroot(set);
1837		else
1838			nset = cpuset_refbase(set);
1839		CPU_COPY(&nset->cs_mask, mask);
1840		cpuset_rel(nset);
1841		break;
1842	case CPU_LEVEL_WHICH:
1843		switch (which) {
1844		case CPU_WHICH_TID:
1845			thread_lock(ttd);
1846			CPU_COPY(&ttd->td_cpuset->cs_mask, mask);
1847			thread_unlock(ttd);
1848			break;
1849		case CPU_WHICH_PID:
1850			FOREACH_THREAD_IN_PROC(p, ttd) {
1851				thread_lock(ttd);
1852				CPU_OR(mask, &ttd->td_cpuset->cs_mask);
1853				thread_unlock(ttd);
1854			}
1855			break;
1856		case CPU_WHICH_CPUSET:
1857		case CPU_WHICH_JAIL:
1858			CPU_COPY(&set->cs_mask, mask);
1859			break;
1860		case CPU_WHICH_IRQ:
1861		case CPU_WHICH_INTRHANDLER:
1862		case CPU_WHICH_ITHREAD:
1863			error = intr_getaffinity(id, which, mask);
1864			break;
1865		case CPU_WHICH_DOMAIN:
1866			if (id < 0 || id >= MAXMEMDOM)
1867				error = ESRCH;
1868			else
1869				CPU_COPY(&cpuset_domain[id], mask);
1870			break;
1871		}
1872		break;
1873	default:
1874		error = EINVAL;
1875		break;
1876	}
1877	if (set)
1878		cpuset_rel(set);
1879	if (p)
1880		PROC_UNLOCK(p);
1881	if (error == 0)
1882		error = copyout(mask, maskp, size);
1883out:
1884	free(mask, M_TEMP);
1885	return (error);
1886}
1887
1888#ifndef _SYS_SYSPROTO_H_
1889struct cpuset_setaffinity_args {
1890	cpulevel_t	level;
1891	cpuwhich_t	which;
1892	id_t		id;
1893	size_t		cpusetsize;
1894	const cpuset_t	*mask;
1895};
1896#endif
1897int
1898sys_cpuset_setaffinity(struct thread *td, struct cpuset_setaffinity_args *uap)
1899{
1900
1901	return (kern_cpuset_setaffinity(td, uap->level, uap->which,
1902	    uap->id, uap->cpusetsize, uap->mask));
1903}
1904
1905int
1906kern_cpuset_setaffinity(struct thread *td, cpulevel_t level, cpuwhich_t which,
1907    id_t id, size_t cpusetsize, const cpuset_t *maskp)
1908{
1909	struct cpuset *nset;
1910	struct cpuset *set;
1911	struct thread *ttd;
1912	struct proc *p;
1913	cpuset_t *mask;
1914	int error;
1915
1916	if (cpusetsize < sizeof(cpuset_t) || cpusetsize > CPU_MAXSIZE / NBBY)
1917		return (ERANGE);
1918	error = cpuset_check_capabilities(td, level, which, id);
1919	if (error != 0)
1920		return (error);
1921	mask = malloc(cpusetsize, M_TEMP, M_WAITOK | M_ZERO);
1922	error = copyin(maskp, mask, cpusetsize);
1923	if (error)
1924		goto out;
1925	/*
1926	 * Verify that no high bits are set.
1927	 */
1928	if (cpusetsize > sizeof(cpuset_t)) {
1929		char *end;
1930		char *cp;
1931
1932		end = cp = (char *)&mask->__bits;
1933		end += cpusetsize;
1934		cp += sizeof(cpuset_t);
1935		while (cp != end)
1936			if (*cp++ != 0) {
1937				error = EINVAL;
1938				goto out;
1939			}
1940
1941	}
1942	if (CPU_EMPTY(mask)) {
1943		error = EDEADLK;
1944		goto out;
1945	}
1946	switch (level) {
1947	case CPU_LEVEL_ROOT:
1948	case CPU_LEVEL_CPUSET:
1949		error = cpuset_which(which, id, &p, &ttd, &set);
1950		if (error)
1951			break;
1952		switch (which) {
1953		case CPU_WHICH_TID:
1954		case CPU_WHICH_PID:
1955			thread_lock(ttd);
1956			set = cpuset_ref(ttd->td_cpuset);
1957			thread_unlock(ttd);
1958			PROC_UNLOCK(p);
1959			break;
1960		case CPU_WHICH_CPUSET:
1961		case CPU_WHICH_JAIL:
1962			break;
1963		case CPU_WHICH_IRQ:
1964		case CPU_WHICH_INTRHANDLER:
1965		case CPU_WHICH_ITHREAD:
1966		case CPU_WHICH_DOMAIN:
1967			error = EINVAL;
1968			goto out;
1969		}
1970		if (level == CPU_LEVEL_ROOT)
1971			nset = cpuset_refroot(set);
1972		else
1973			nset = cpuset_refbase(set);
1974		error = cpuset_modify(nset, mask);
1975		cpuset_rel(nset);
1976		cpuset_rel(set);
1977		break;
1978	case CPU_LEVEL_WHICH:
1979		switch (which) {
1980		case CPU_WHICH_TID:
1981			error = cpuset_setthread(id, mask);
1982			break;
1983		case CPU_WHICH_PID:
1984			error = cpuset_setproc(id, NULL, mask, NULL);
1985			break;
1986		case CPU_WHICH_CPUSET:
1987		case CPU_WHICH_JAIL:
1988			error = cpuset_which(which, id, &p, &ttd, &set);
1989			if (error == 0) {
1990				error = cpuset_modify(set, mask);
1991				cpuset_rel(set);
1992			}
1993			break;
1994		case CPU_WHICH_IRQ:
1995		case CPU_WHICH_INTRHANDLER:
1996		case CPU_WHICH_ITHREAD:
1997			error = intr_setaffinity(id, which, mask);
1998			break;
1999		default:
2000			error = EINVAL;
2001			break;
2002		}
2003		break;
2004	default:
2005		error = EINVAL;
2006		break;
2007	}
2008out:
2009	free(mask, M_TEMP);
2010	return (error);
2011}
2012
2013#ifndef _SYS_SYSPROTO_H_
2014struct cpuset_getdomain_args {
2015	cpulevel_t	level;
2016	cpuwhich_t	which;
2017	id_t		id;
2018	size_t		domainsetsize;
2019	domainset_t	*mask;
2020	int 		*policy;
2021};
2022#endif
2023int
2024sys_cpuset_getdomain(struct thread *td, struct cpuset_getdomain_args *uap)
2025{
2026
2027	return (kern_cpuset_getdomain(td, uap->level, uap->which,
2028	    uap->id, uap->domainsetsize, uap->mask, uap->policy));
2029}
2030
2031int
2032kern_cpuset_getdomain(struct thread *td, cpulevel_t level, cpuwhich_t which,
2033    id_t id, size_t domainsetsize, domainset_t *maskp, int *policyp)
2034{
2035	struct domainset outset;
2036	struct thread *ttd;
2037	struct cpuset *nset;
2038	struct cpuset *set;
2039	struct domainset *dset;
2040	struct proc *p;
2041	domainset_t *mask;
2042	int error;
2043
2044	if (domainsetsize < sizeof(domainset_t) ||
2045	    domainsetsize > DOMAINSET_MAXSIZE / NBBY)
2046		return (ERANGE);
2047	error = cpuset_check_capabilities(td, level, which, id);
2048	if (error != 0)
2049		return (error);
2050	mask = malloc(domainsetsize, M_TEMP, M_WAITOK | M_ZERO);
2051	bzero(&outset, sizeof(outset));
2052	error = cpuset_which(which, id, &p, &ttd, &set);
2053	if (error)
2054		goto out;
2055	switch (level) {
2056	case CPU_LEVEL_ROOT:
2057	case CPU_LEVEL_CPUSET:
2058		switch (which) {
2059		case CPU_WHICH_TID:
2060		case CPU_WHICH_PID:
2061			thread_lock(ttd);
2062			set = cpuset_ref(ttd->td_cpuset);
2063			thread_unlock(ttd);
2064			break;
2065		case CPU_WHICH_CPUSET:
2066		case CPU_WHICH_JAIL:
2067			break;
2068		case CPU_WHICH_IRQ:
2069		case CPU_WHICH_INTRHANDLER:
2070		case CPU_WHICH_ITHREAD:
2071		case CPU_WHICH_DOMAIN:
2072			error = EINVAL;
2073			goto out;
2074		}
2075		if (level == CPU_LEVEL_ROOT)
2076			nset = cpuset_refroot(set);
2077		else
2078			nset = cpuset_refbase(set);
2079		domainset_copy(nset->cs_domain, &outset);
2080		cpuset_rel(nset);
2081		break;
2082	case CPU_LEVEL_WHICH:
2083		switch (which) {
2084		case CPU_WHICH_TID:
2085			thread_lock(ttd);
2086			domainset_copy(ttd->td_cpuset->cs_domain, &outset);
2087			thread_unlock(ttd);
2088			break;
2089		case CPU_WHICH_PID:
2090			FOREACH_THREAD_IN_PROC(p, ttd) {
2091				thread_lock(ttd);
2092				dset = ttd->td_cpuset->cs_domain;
2093				/* Show all domains in the proc. */
2094				DOMAINSET_OR(&outset.ds_mask, &dset->ds_mask);
2095				/* Last policy wins. */
2096				outset.ds_policy = dset->ds_policy;
2097				outset.ds_prefer = dset->ds_prefer;
2098				thread_unlock(ttd);
2099			}
2100			break;
2101		case CPU_WHICH_CPUSET:
2102		case CPU_WHICH_JAIL:
2103			domainset_copy(set->cs_domain, &outset);
2104			break;
2105		case CPU_WHICH_IRQ:
2106		case CPU_WHICH_INTRHANDLER:
2107		case CPU_WHICH_ITHREAD:
2108		case CPU_WHICH_DOMAIN:
2109			error = EINVAL;
2110			break;
2111		}
2112		break;
2113	default:
2114		error = EINVAL;
2115		break;
2116	}
2117	if (set)
2118		cpuset_rel(set);
2119	if (p)
2120		PROC_UNLOCK(p);
2121	/*
2122	 * Translate prefer into a set containing only the preferred domain,
2123	 * not the entire fallback set.
2124	 */
2125	if (outset.ds_policy == DOMAINSET_POLICY_PREFER) {
2126		DOMAINSET_ZERO(&outset.ds_mask);
2127		DOMAINSET_SET(outset.ds_prefer, &outset.ds_mask);
2128	}
2129	DOMAINSET_COPY(&outset.ds_mask, mask);
2130	if (error == 0)
2131		error = copyout(mask, maskp, domainsetsize);
2132	if (error == 0)
2133		if (suword32(policyp, outset.ds_policy) != 0)
2134			error = EFAULT;
2135out:
2136	free(mask, M_TEMP);
2137	return (error);
2138}
2139
2140#ifndef _SYS_SYSPROTO_H_
2141struct cpuset_setdomain_args {
2142	cpulevel_t	level;
2143	cpuwhich_t	which;
2144	id_t		id;
2145	size_t		domainsetsize;
2146	domainset_t	*mask;
2147	int 		policy;
2148};
2149#endif
2150int
2151sys_cpuset_setdomain(struct thread *td, struct cpuset_setdomain_args *uap)
2152{
2153
2154	return (kern_cpuset_setdomain(td, uap->level, uap->which,
2155	    uap->id, uap->domainsetsize, uap->mask, uap->policy));
2156}
2157
2158int
2159kern_cpuset_setdomain(struct thread *td, cpulevel_t level, cpuwhich_t which,
2160    id_t id, size_t domainsetsize, const domainset_t *maskp, int policy)
2161{
2162	struct cpuset *nset;
2163	struct cpuset *set;
2164	struct thread *ttd;
2165	struct proc *p;
2166	struct domainset domain;
2167	domainset_t *mask;
2168	int error;
2169
2170	if (domainsetsize < sizeof(domainset_t) ||
2171	    domainsetsize > DOMAINSET_MAXSIZE / NBBY)
2172		return (ERANGE);
2173	if (policy <= DOMAINSET_POLICY_INVALID ||
2174	    policy > DOMAINSET_POLICY_MAX)
2175		return (EINVAL);
2176	error = cpuset_check_capabilities(td, level, which, id);
2177	if (error != 0)
2178		return (error);
2179	memset(&domain, 0, sizeof(domain));
2180	mask = malloc(domainsetsize, M_TEMP, M_WAITOK | M_ZERO);
2181	error = copyin(maskp, mask, domainsetsize);
2182	if (error)
2183		goto out;
2184	/*
2185	 * Verify that no high bits are set.
2186	 */
2187	if (domainsetsize > sizeof(domainset_t)) {
2188		char *end;
2189		char *cp;
2190
2191		end = cp = (char *)&mask->__bits;
2192		end += domainsetsize;
2193		cp += sizeof(domainset_t);
2194		while (cp != end)
2195			if (*cp++ != 0) {
2196				error = EINVAL;
2197				goto out;
2198			}
2199
2200	}
2201	if (DOMAINSET_EMPTY(mask)) {
2202		error = EDEADLK;
2203		goto out;
2204	}
2205	DOMAINSET_COPY(mask, &domain.ds_mask);
2206	domain.ds_policy = policy;
2207
2208	/*
2209	 * Sanitize the provided mask.
2210	 */
2211	if (!DOMAINSET_SUBSET(&all_domains, &domain.ds_mask)) {
2212		error = EINVAL;
2213		goto out;
2214	}
2215
2216	/* Translate preferred policy into a mask and fallback. */
2217	if (policy == DOMAINSET_POLICY_PREFER) {
2218		/* Only support a single preferred domain. */
2219		if (DOMAINSET_COUNT(&domain.ds_mask) != 1) {
2220			error = EINVAL;
2221			goto out;
2222		}
2223		domain.ds_prefer = DOMAINSET_FFS(&domain.ds_mask) - 1;
2224		/* This will be constrained by domainset_shadow(). */
2225		DOMAINSET_COPY(&all_domains, &domain.ds_mask);
2226	}
2227
2228	/*
2229	 * When given an impossible policy, fall back to interleaving
2230	 * across all domains.
2231	 */
2232	if (domainset_empty_vm(&domain))
2233		domainset_copy(&domainset2, &domain);
2234
2235	switch (level) {
2236	case CPU_LEVEL_ROOT:
2237	case CPU_LEVEL_CPUSET:
2238		error = cpuset_which(which, id, &p, &ttd, &set);
2239		if (error)
2240			break;
2241		switch (which) {
2242		case CPU_WHICH_TID:
2243		case CPU_WHICH_PID:
2244			thread_lock(ttd);
2245			set = cpuset_ref(ttd->td_cpuset);
2246			thread_unlock(ttd);
2247			PROC_UNLOCK(p);
2248			break;
2249		case CPU_WHICH_CPUSET:
2250		case CPU_WHICH_JAIL:
2251			break;
2252		case CPU_WHICH_IRQ:
2253		case CPU_WHICH_INTRHANDLER:
2254		case CPU_WHICH_ITHREAD:
2255		case CPU_WHICH_DOMAIN:
2256			error = EINVAL;
2257			goto out;
2258		}
2259		if (level == CPU_LEVEL_ROOT)
2260			nset = cpuset_refroot(set);
2261		else
2262			nset = cpuset_refbase(set);
2263		error = cpuset_modify_domain(nset, &domain);
2264		cpuset_rel(nset);
2265		cpuset_rel(set);
2266		break;
2267	case CPU_LEVEL_WHICH:
2268		switch (which) {
2269		case CPU_WHICH_TID:
2270			error = _cpuset_setthread(id, NULL, &domain);
2271			break;
2272		case CPU_WHICH_PID:
2273			error = cpuset_setproc(id, NULL, NULL, &domain);
2274			break;
2275		case CPU_WHICH_CPUSET:
2276		case CPU_WHICH_JAIL:
2277			error = cpuset_which(which, id, &p, &ttd, &set);
2278			if (error == 0) {
2279				error = cpuset_modify_domain(set, &domain);
2280				cpuset_rel(set);
2281			}
2282			break;
2283		case CPU_WHICH_IRQ:
2284		case CPU_WHICH_INTRHANDLER:
2285		case CPU_WHICH_ITHREAD:
2286		default:
2287			error = EINVAL;
2288			break;
2289		}
2290		break;
2291	default:
2292		error = EINVAL;
2293		break;
2294	}
2295out:
2296	free(mask, M_TEMP);
2297	return (error);
2298}
2299
2300#ifdef DDB
2301
2302static void
2303ddb_display_bitset(const struct bitset *set, int size)
2304{
2305	int bit, once;
2306
2307	for (once = 0, bit = 0; bit < size; bit++) {
2308		if (CPU_ISSET(bit, set)) {
2309			if (once == 0) {
2310				db_printf("%d", bit);
2311				once = 1;
2312			} else
2313				db_printf(",%d", bit);
2314		}
2315	}
2316	if (once == 0)
2317		db_printf("<none>");
2318}
2319
2320void
2321ddb_display_cpuset(const cpuset_t *set)
2322{
2323	ddb_display_bitset((const struct bitset *)set, CPU_SETSIZE);
2324}
2325
2326static void
2327ddb_display_domainset(const domainset_t *set)
2328{
2329	ddb_display_bitset((const struct bitset *)set, DOMAINSET_SETSIZE);
2330}
2331
2332DB_SHOW_COMMAND(cpusets, db_show_cpusets)
2333{
2334	struct cpuset *set;
2335
2336	LIST_FOREACH(set, &cpuset_ids, cs_link) {
2337		db_printf("set=%p id=%-6u ref=%-6d flags=0x%04x parent id=%d\n",
2338		    set, set->cs_id, set->cs_ref, set->cs_flags,
2339		    (set->cs_parent != NULL) ? set->cs_parent->cs_id : 0);
2340		db_printf("  cpu mask=");
2341		ddb_display_cpuset(&set->cs_mask);
2342		db_printf("\n");
2343		db_printf("  domain policy %d prefer %d mask=",
2344		    set->cs_domain->ds_policy, set->cs_domain->ds_prefer);
2345		ddb_display_domainset(&set->cs_domain->ds_mask);
2346		db_printf("\n");
2347		if (db_pager_quit)
2348			break;
2349	}
2350}
2351
2352DB_SHOW_COMMAND(domainsets, db_show_domainsets)
2353{
2354	struct domainset *set;
2355
2356	LIST_FOREACH(set, &cpuset_domains, ds_link) {
2357		db_printf("set=%p policy %d prefer %d cnt %d\n",
2358		    set, set->ds_policy, set->ds_prefer, set->ds_cnt);
2359		db_printf("  mask =");
2360		ddb_display_domainset(&set->ds_mask);
2361		db_printf("\n");
2362	}
2363}
2364#endif /* DDB */
2365