Skip to content
Snippets Groups Projects
sys.c 40 KiB
Newer Older
  • Learn to ignore specific revisions
  • Linus Torvalds's avatar
    Linus Torvalds committed
    
    ok_pgid:
    	err = security_task_setpgid(p, pgid);
    	if (err)
    		goto out;
    
    	if (process_group(p) != pgid) {
    		detach_pid(p, PIDTYPE_PGID);
    		p->signal->pgrp = pgid;
    		attach_pid(p, PIDTYPE_PGID, pgid);
    	}
    
    	err = 0;
    out:
    	/* All paths lead to here, thus we are safe. -DaveM */
    	write_unlock_irq(&tasklist_lock);
    	return err;
    }
    
    asmlinkage long sys_getpgid(pid_t pid)
    {
    	if (!pid) {
    		return process_group(current);
    	} else {
    		int retval;
    		struct task_struct *p;
    
    		read_lock(&tasklist_lock);
    		p = find_task_by_pid(pid);
    
    		retval = -ESRCH;
    		if (p) {
    			retval = security_task_getpgid(p);
    			if (!retval)
    				retval = process_group(p);
    		}
    		read_unlock(&tasklist_lock);
    		return retval;
    	}
    }
    
    #ifdef __ARCH_WANT_SYS_GETPGRP
    
    asmlinkage long sys_getpgrp(void)
    {
    	/* SMP - assuming writes are word atomic this is fine */
    	return process_group(current);
    }
    
    #endif
    
    asmlinkage long sys_getsid(pid_t pid)
    {
    	if (!pid) {
    		return current->signal->session;
    	} else {
    		int retval;
    		struct task_struct *p;
    
    		read_lock(&tasklist_lock);
    		p = find_task_by_pid(pid);
    
    		retval = -ESRCH;
    		if(p) {
    			retval = security_task_getsid(p);
    			if (!retval)
    				retval = p->signal->session;
    		}
    		read_unlock(&tasklist_lock);
    		return retval;
    	}
    }
    
    asmlinkage long sys_setsid(void)
    {
    	struct pid *pid;
    	int err = -EPERM;
    
    	if (!thread_group_leader(current))
    		return -EINVAL;
    
    	down(&tty_sem);
    	write_lock_irq(&tasklist_lock);
    
    	pid = find_pid(PIDTYPE_PGID, current->pid);
    	if (pid)
    		goto out;
    
    	current->signal->leader = 1;
    	__set_special_pids(current->pid, current->pid);
    	current->signal->tty = NULL;
    	current->signal->tty_old_pgrp = 0;
    	err = process_group(current);
    out:
    	write_unlock_irq(&tasklist_lock);
    	up(&tty_sem);
    	return err;
    }
    
    /*
     * Supplementary group IDs
     */
    
    /* init to 2 - one for init_task, one to ensure it is never freed */
    struct group_info init_groups = { .usage = ATOMIC_INIT(2) };
    
    struct group_info *groups_alloc(int gidsetsize)
    {
    	struct group_info *group_info;
    	int nblocks;
    	int i;
    
    	nblocks = (gidsetsize + NGROUPS_PER_BLOCK - 1) / NGROUPS_PER_BLOCK;
    	/* Make sure we always allocate at least one indirect block pointer */
    	nblocks = nblocks ? : 1;
    	group_info = kmalloc(sizeof(*group_info) + nblocks*sizeof(gid_t *), GFP_USER);
    	if (!group_info)
    		return NULL;
    	group_info->ngroups = gidsetsize;
    	group_info->nblocks = nblocks;
    	atomic_set(&group_info->usage, 1);
    
    	if (gidsetsize <= NGROUPS_SMALL) {
    		group_info->blocks[0] = group_info->small_block;
    	} else {
    		for (i = 0; i < nblocks; i++) {
    			gid_t *b;
    			b = (void *)__get_free_page(GFP_USER);
    			if (!b)
    				goto out_undo_partial_alloc;
    			group_info->blocks[i] = b;
    		}
    	}
    	return group_info;
    
    out_undo_partial_alloc:
    	while (--i >= 0) {
    		free_page((unsigned long)group_info->blocks[i]);
    	}
    	kfree(group_info);
    	return NULL;
    }
    
    EXPORT_SYMBOL(groups_alloc);
    
    void groups_free(struct group_info *group_info)
    {
    	if (group_info->blocks[0] != group_info->small_block) {
    		int i;
    		for (i = 0; i < group_info->nblocks; i++)
    			free_page((unsigned long)group_info->blocks[i]);
    	}
    	kfree(group_info);
    }
    
    EXPORT_SYMBOL(groups_free);
    
    /* export the group_info to a user-space array */
    static int groups_to_user(gid_t __user *grouplist,
        struct group_info *group_info)
    {
    	int i;
    	int count = group_info->ngroups;
    
    	for (i = 0; i < group_info->nblocks; i++) {
    		int cp_count = min(NGROUPS_PER_BLOCK, count);
    		int off = i * NGROUPS_PER_BLOCK;
    		int len = cp_count * sizeof(*grouplist);
    
    		if (copy_to_user(grouplist+off, group_info->blocks[i], len))
    			return -EFAULT;
    
    		count -= cp_count;
    	}
    	return 0;
    }
    
    /* fill a group_info from a user-space array - it must be allocated already */
    static int groups_from_user(struct group_info *group_info,
        gid_t __user *grouplist)
     {
    	int i;
    	int count = group_info->ngroups;
    
    	for (i = 0; i < group_info->nblocks; i++) {
    		int cp_count = min(NGROUPS_PER_BLOCK, count);
    		int off = i * NGROUPS_PER_BLOCK;
    		int len = cp_count * sizeof(*grouplist);
    
    		if (copy_from_user(group_info->blocks[i], grouplist+off, len))
    			return -EFAULT;
    
    		count -= cp_count;
    	}
    	return 0;
    }
    
    
    /* a simple Shell sort */
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640
    static void groups_sort(struct group_info *group_info)
    {
    	int base, max, stride;
    	int gidsetsize = group_info->ngroups;
    
    	for (stride = 1; stride < gidsetsize; stride = 3 * stride + 1)
    		; /* nothing */
    	stride /= 3;
    
    	while (stride) {
    		max = gidsetsize - stride;
    		for (base = 0; base < max; base++) {
    			int left = base;
    			int right = left + stride;
    			gid_t tmp = GROUP_AT(group_info, right);
    
    			while (left >= 0 && GROUP_AT(group_info, left) > tmp) {
    				GROUP_AT(group_info, right) =
    				    GROUP_AT(group_info, left);
    				right = left;
    				left -= stride;
    			}
    			GROUP_AT(group_info, right) = tmp;
    		}
    		stride /= 3;
    	}
    }
    
    /* a simple bsearch */
    static int groups_search(struct group_info *group_info, gid_t grp)
    {
    	int left, right;
    
    	if (!group_info)
    		return 0;
    
    	left = 0;
    	right = group_info->ngroups;
    	while (left < right) {
    		int mid = (left+right)/2;
    		int cmp = grp - GROUP_AT(group_info, mid);
    		if (cmp > 0)
    			left = mid + 1;
    		else if (cmp < 0)
    			right = mid;
    		else
    			return 1;
    	}
    	return 0;
    }
    
    /* validate and set current->group_info */
    int set_current_groups(struct group_info *group_info)
    {
    	int retval;
    	struct group_info *old_info;
    
    	retval = security_task_setgroups(group_info);
    	if (retval)
    		return retval;
    
    	groups_sort(group_info);
    	get_group_info(group_info);
    
    	task_lock(current);
    	old_info = current->group_info;
    	current->group_info = group_info;
    	task_unlock(current);
    
    	put_group_info(old_info);
    
    	return 0;
    }
    
    EXPORT_SYMBOL(set_current_groups);
    
    asmlinkage long sys_getgroups(int gidsetsize, gid_t __user *grouplist)
    {
    	int i = 0;
    
    	/*
    	 *	SMP: Nobody else can change our grouplist. Thus we are
    	 *	safe.
    	 */
    
    	if (gidsetsize < 0)
    		return -EINVAL;
    
    	/* no need to grab task_lock here; it cannot change */
    	get_group_info(current->group_info);
    	i = current->group_info->ngroups;
    	if (gidsetsize) {
    		if (i > gidsetsize) {
    			i = -EINVAL;
    			goto out;
    		}
    		if (groups_to_user(grouplist, current->group_info)) {
    			i = -EFAULT;
    			goto out;
    		}
    	}
    out:
    	put_group_info(current->group_info);
    	return i;
    }
    
    /*
     *	SMP: Our groups are copy-on-write. We can set them safely
     *	without another task interfering.
     */
     
    asmlinkage long sys_setgroups(int gidsetsize, gid_t __user *grouplist)
    {
    	struct group_info *group_info;
    	int retval;
    
    	if (!capable(CAP_SETGID))
    		return -EPERM;
    	if ((unsigned)gidsetsize > NGROUPS_MAX)
    		return -EINVAL;
    
    	group_info = groups_alloc(gidsetsize);
    	if (!group_info)
    		return -ENOMEM;
    	retval = groups_from_user(group_info, grouplist);
    	if (retval) {
    		put_group_info(group_info);
    		return retval;
    	}
    
    	retval = set_current_groups(group_info);
    	put_group_info(group_info);
    
    	return retval;
    }
    
    /*
     * Check whether we're fsgid/egid or in the supplemental group..
     */
    int in_group_p(gid_t grp)
    {
    	int retval = 1;
    	if (grp != current->fsgid) {
    		get_group_info(current->group_info);
    		retval = groups_search(current->group_info, grp);
    		put_group_info(current->group_info);
    	}
    	return retval;
    }
    
    EXPORT_SYMBOL(in_group_p);
    
    int in_egroup_p(gid_t grp)
    {
    	int retval = 1;
    	if (grp != current->egid) {
    		get_group_info(current->group_info);
    		retval = groups_search(current->group_info, grp);
    		put_group_info(current->group_info);
    	}
    	return retval;
    }
    
    EXPORT_SYMBOL(in_egroup_p);
    
    DECLARE_RWSEM(uts_sem);
    
    EXPORT_SYMBOL(uts_sem);
    
    asmlinkage long sys_newuname(struct new_utsname __user * name)
    {
    	int errno = 0;
    
    	down_read(&uts_sem);
    	if (copy_to_user(name,&system_utsname,sizeof *name))
    		errno = -EFAULT;
    	up_read(&uts_sem);
    	return errno;
    }
    
    asmlinkage long sys_sethostname(char __user *name, int len)
    {
    	int errno;
    	char tmp[__NEW_UTS_LEN];
    
    	if (!capable(CAP_SYS_ADMIN))
    		return -EPERM;
    	if (len < 0 || len > __NEW_UTS_LEN)
    		return -EINVAL;
    	down_write(&uts_sem);
    	errno = -EFAULT;
    	if (!copy_from_user(tmp, name, len)) {
    		memcpy(system_utsname.nodename, tmp, len);
    		system_utsname.nodename[len] = 0;
    		errno = 0;
    	}
    	up_write(&uts_sem);
    	return errno;
    }
    
    #ifdef __ARCH_WANT_SYS_GETHOSTNAME
    
    asmlinkage long sys_gethostname(char __user *name, int len)
    {
    	int i, errno;
    
    	if (len < 0)
    		return -EINVAL;
    	down_read(&uts_sem);
    	i = 1 + strlen(system_utsname.nodename);
    	if (i > len)
    		i = len;
    	errno = 0;
    	if (copy_to_user(name, system_utsname.nodename, i))
    		errno = -EFAULT;
    	up_read(&uts_sem);
    	return errno;
    }
    
    #endif
    
    /*
     * Only setdomainname; getdomainname can be implemented by calling
     * uname()
     */
    asmlinkage long sys_setdomainname(char __user *name, int len)
    {
    	int errno;
    	char tmp[__NEW_UTS_LEN];
    
    	if (!capable(CAP_SYS_ADMIN))
    		return -EPERM;
    	if (len < 0 || len > __NEW_UTS_LEN)
    		return -EINVAL;
    
    	down_write(&uts_sem);
    	errno = -EFAULT;
    	if (!copy_from_user(tmp, name, len)) {
    		memcpy(system_utsname.domainname, tmp, len);
    		system_utsname.domainname[len] = 0;
    		errno = 0;
    	}
    	up_write(&uts_sem);
    	return errno;
    }
    
    asmlinkage long sys_getrlimit(unsigned int resource, struct rlimit __user *rlim)
    {
    	if (resource >= RLIM_NLIMITS)
    		return -EINVAL;
    	else {
    		struct rlimit value;
    		task_lock(current->group_leader);
    		value = current->signal->rlim[resource];
    		task_unlock(current->group_leader);
    		return copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
    	}
    }
    
    #ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
    
    /*
     *	Back compatibility for getrlimit. Needed for some apps.
     */
     
    asmlinkage long sys_old_getrlimit(unsigned int resource, struct rlimit __user *rlim)
    {
    	struct rlimit x;
    	if (resource >= RLIM_NLIMITS)
    		return -EINVAL;
    
    	task_lock(current->group_leader);
    	x = current->signal->rlim[resource];
    	task_unlock(current->group_leader);
    	if(x.rlim_cur > 0x7FFFFFFF)
    		x.rlim_cur = 0x7FFFFFFF;
    	if(x.rlim_max > 0x7FFFFFFF)
    		x.rlim_max = 0x7FFFFFFF;
    	return copy_to_user(rlim, &x, sizeof(x))?-EFAULT:0;
    }
    
    #endif
    
    asmlinkage long sys_setrlimit(unsigned int resource, struct rlimit __user *rlim)
    {
    	struct rlimit new_rlim, *old_rlim;
    	int retval;
    
    	if (resource >= RLIM_NLIMITS)
    		return -EINVAL;
    	if(copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
    		return -EFAULT;
           if (new_rlim.rlim_cur > new_rlim.rlim_max)
                   return -EINVAL;
    	old_rlim = current->signal->rlim + resource;
    	if ((new_rlim.rlim_max > old_rlim->rlim_max) &&
    	    !capable(CAP_SYS_RESOURCE))
    		return -EPERM;
    	if (resource == RLIMIT_NOFILE && new_rlim.rlim_max > NR_OPEN)
    			return -EPERM;
    
    	retval = security_task_setrlimit(resource, &new_rlim);
    	if (retval)
    		return retval;
    
    	task_lock(current->group_leader);
    	*old_rlim = new_rlim;
    	task_unlock(current->group_leader);
    
    	if (resource == RLIMIT_CPU && new_rlim.rlim_cur != RLIM_INFINITY &&
    	    (cputime_eq(current->signal->it_prof_expires, cputime_zero) ||
    	     new_rlim.rlim_cur <= cputime_to_secs(
    		     current->signal->it_prof_expires))) {
    		cputime_t cputime = secs_to_cputime(new_rlim.rlim_cur);
    		read_lock(&tasklist_lock);
    		spin_lock_irq(&current->sighand->siglock);
    		set_process_cpu_timer(current, CPUCLOCK_PROF,
    				      &cputime, NULL);
    		spin_unlock_irq(&current->sighand->siglock);
    		read_unlock(&tasklist_lock);
    	}
    
    	return 0;
    }
    
    /*
     * It would make sense to put struct rusage in the task_struct,
     * except that would make the task_struct be *really big*.  After
     * task_struct gets moved into malloc'ed memory, it would
     * make sense to do this.  It will make moving the rest of the information
     * a lot simpler!  (Which we're not doing right now because we're not
     * measuring them yet).
     *
     * This expects to be called with tasklist_lock read-locked or better,
     * and the siglock not locked.  It may momentarily take the siglock.
     *
     * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
     * races with threads incrementing their own counters.  But since word
     * reads are atomic, we either get new values or old values and we don't
     * care which for the sums.  We always take the siglock to protect reading
     * the c* fields from p->signal from races with exit.c updating those
     * fields when reaping, so a sample either gets all the additions of a
     * given child after it's reaped, or none so this sample is before reaping.
     */
    
    static void k_getrusage(struct task_struct *p, int who, struct rusage *r)
    {
    	struct task_struct *t;
    	unsigned long flags;
    	cputime_t utime, stime;
    
    	memset((char *) r, 0, sizeof *r);
    
    	if (unlikely(!p->signal))
    		return;
    
    	switch (who) {
    		case RUSAGE_CHILDREN:
    			spin_lock_irqsave(&p->sighand->siglock, flags);
    			utime = p->signal->cutime;
    			stime = p->signal->cstime;
    			r->ru_nvcsw = p->signal->cnvcsw;
    			r->ru_nivcsw = p->signal->cnivcsw;
    			r->ru_minflt = p->signal->cmin_flt;
    			r->ru_majflt = p->signal->cmaj_flt;
    			spin_unlock_irqrestore(&p->sighand->siglock, flags);
    			cputime_to_timeval(utime, &r->ru_utime);
    			cputime_to_timeval(stime, &r->ru_stime);
    			break;
    		case RUSAGE_SELF:
    			spin_lock_irqsave(&p->sighand->siglock, flags);
    			utime = stime = cputime_zero;
    			goto sum_group;
    		case RUSAGE_BOTH:
    			spin_lock_irqsave(&p->sighand->siglock, flags);
    			utime = p->signal->cutime;
    			stime = p->signal->cstime;
    			r->ru_nvcsw = p->signal->cnvcsw;
    			r->ru_nivcsw = p->signal->cnivcsw;
    			r->ru_minflt = p->signal->cmin_flt;
    			r->ru_majflt = p->signal->cmaj_flt;
    		sum_group:
    			utime = cputime_add(utime, p->signal->utime);
    			stime = cputime_add(stime, p->signal->stime);
    			r->ru_nvcsw += p->signal->nvcsw;
    			r->ru_nivcsw += p->signal->nivcsw;
    			r->ru_minflt += p->signal->min_flt;
    			r->ru_majflt += p->signal->maj_flt;
    			t = p;
    			do {
    				utime = cputime_add(utime, t->utime);
    				stime = cputime_add(stime, t->stime);
    				r->ru_nvcsw += t->nvcsw;
    				r->ru_nivcsw += t->nivcsw;
    				r->ru_minflt += t->min_flt;
    				r->ru_majflt += t->maj_flt;
    				t = next_thread(t);
    			} while (t != p);
    			spin_unlock_irqrestore(&p->sighand->siglock, flags);
    			cputime_to_timeval(utime, &r->ru_utime);
    			cputime_to_timeval(stime, &r->ru_stime);
    			break;
    		default:
    			BUG();
    	}
    }
    
    int getrusage(struct task_struct *p, int who, struct rusage __user *ru)
    {
    	struct rusage r;
    	read_lock(&tasklist_lock);
    	k_getrusage(p, who, &r);
    	read_unlock(&tasklist_lock);
    	return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
    }
    
    asmlinkage long sys_getrusage(int who, struct rusage __user *ru)
    {
    	if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN)
    		return -EINVAL;
    	return getrusage(current, who, ru);
    }
    
    asmlinkage long sys_umask(int mask)
    {
    	mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
    	return mask;
    }
        
    asmlinkage long sys_prctl(int option, unsigned long arg2, unsigned long arg3,
    			  unsigned long arg4, unsigned long arg5)
    {
    	long error;
    	int sig;
    
    	error = security_task_prctl(option, arg2, arg3, arg4, arg5);
    	if (error)
    		return error;
    
    	switch (option) {
    		case PR_SET_PDEATHSIG:
    			sig = arg2;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    				error = -EINVAL;
    				break;
    			}
    			current->pdeath_signal = sig;
    			break;
    		case PR_GET_PDEATHSIG:
    			error = put_user(current->pdeath_signal, (int __user *)arg2);
    			break;
    		case PR_GET_DUMPABLE:
    			if (current->mm->dumpable)
    				error = 1;
    			break;
    		case PR_SET_DUMPABLE:
    
    Alan Cox's avatar
    Alan Cox committed
    			if (arg2 < 0 || arg2 > 2) {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    				error = -EINVAL;
    				break;
    			}
    			current->mm->dumpable = arg2;
    			break;
    
    		case PR_SET_UNALIGN:
    			error = SET_UNALIGN_CTL(current, arg2);
    			break;
    		case PR_GET_UNALIGN:
    			error = GET_UNALIGN_CTL(current, arg2);
    			break;
    		case PR_SET_FPEMU:
    			error = SET_FPEMU_CTL(current, arg2);
    			break;
    		case PR_GET_FPEMU:
    			error = GET_FPEMU_CTL(current, arg2);
    			break;
    		case PR_SET_FPEXC:
    			error = SET_FPEXC_CTL(current, arg2);
    			break;
    		case PR_GET_FPEXC:
    			error = GET_FPEXC_CTL(current, arg2);
    			break;
    		case PR_GET_TIMING:
    			error = PR_TIMING_STATISTICAL;
    			break;
    		case PR_SET_TIMING:
    			if (arg2 == PR_TIMING_STATISTICAL)
    				error = 0;
    			else
    				error = -EINVAL;
    			break;
    
    		case PR_GET_KEEPCAPS:
    			if (current->keep_capabilities)
    				error = 1;
    			break;
    		case PR_SET_KEEPCAPS:
    			if (arg2 != 0 && arg2 != 1) {
    				error = -EINVAL;
    				break;
    			}
    			current->keep_capabilities = arg2;
    			break;
    		case PR_SET_NAME: {
    			struct task_struct *me = current;
    			unsigned char ncomm[sizeof(me->comm)];
    
    			ncomm[sizeof(me->comm)-1] = 0;
    			if (strncpy_from_user(ncomm, (char __user *)arg2,
    						sizeof(me->comm)-1) < 0)
    				return -EFAULT;
    			set_task_comm(me, ncomm);
    			return 0;
    		}
    		case PR_GET_NAME: {
    			struct task_struct *me = current;
    			unsigned char tcomm[sizeof(me->comm)];
    
    			get_task_comm(tcomm, me);
    			if (copy_to_user((char __user *)arg2, tcomm, sizeof(tcomm)))
    				return -EFAULT;
    			return 0;
    		}
    		default:
    			error = -EINVAL;
    			break;
    	}
    	return error;
    }