⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sys_ppc32.c

📁 linux-2.6.15.6
💻 C
📖 第 1 页 / 共 3 页
字号:
/* Translations due to time_t size differences.  Which affects all   sorts of things, like timeval and itimerval.  */extern struct timezone sys_tz;asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv, struct timezone __user *tz){	if (tv) {		struct timeval ktv;		do_gettimeofday(&ktv);		if (put_tv32(tv, &ktv))			return -EFAULT;	}	if (tz) {		if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))			return -EFAULT;	}		return 0;}asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv, struct timezone __user *tz){	struct timespec kts;	struct timezone ktz;	 	if (tv) {		if (get_ts32(&kts, tv))			return -EFAULT;	}	if (tz) {		if (copy_from_user(&ktz, tz, sizeof(ktz)))			return -EFAULT;	}	return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);}#ifdef CONFIG_SYSVIPClong compat_sys_ipc(u32 call, u32 first, u32 second, u32 third, compat_uptr_t ptr,	       u32 fifth){	int version;	version = call >> 16; /* hack for backward compatibility */	call &= 0xffff;	switch (call) {	case SEMTIMEDOP:		if (fifth)			/* sign extend semid */			return compat_sys_semtimedop((int)first,						     compat_ptr(ptr), second,						     compat_ptr(fifth));		/* else fall through for normal semop() */	case SEMOP:		/* struct sembuf is the same on 32 and 64bit :)) */		/* sign extend semid */		return sys_semtimedop((int)first, compat_ptr(ptr), second,				      NULL);	case SEMGET:		/* sign extend key, nsems */		return sys_semget((int)first, (int)second, third);	case SEMCTL:		/* sign extend semid, semnum */		return compat_sys_semctl((int)first, (int)second, third,					 compat_ptr(ptr));	case MSGSND:		/* sign extend msqid */		return compat_sys_msgsnd((int)first, (int)second, third,					 compat_ptr(ptr));	case MSGRCV:		/* sign extend msqid, msgtyp */		return compat_sys_msgrcv((int)first, second, (int)fifth,					 third, version, compat_ptr(ptr));	case MSGGET:		/* sign extend key */		return sys_msgget((int)first, second);	case MSGCTL:		/* sign extend msqid */		return compat_sys_msgctl((int)first, second, compat_ptr(ptr));	case SHMAT:		/* sign extend shmid */		return compat_sys_shmat((int)first, second, third, version,					compat_ptr(ptr));	case SHMDT:		return sys_shmdt(compat_ptr(ptr));	case SHMGET:		/* sign extend key_t */		return sys_shmget((int)first, second, third);	case SHMCTL:		/* sign extend shmid */		return compat_sys_shmctl((int)first, second, compat_ptr(ptr));	default:		return -ENOSYS;	}	return -ENOSYS;}#endif/* Note: it is necessary to treat out_fd and in_fd as unsigned ints,  * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_sendfile(u32 out_fd, u32 in_fd, compat_off_t __user * offset, u32 count){	mm_segment_t old_fs = get_fs();	int ret;	off_t of;	off_t __user *up;	if (offset && get_user(of, offset))		return -EFAULT;	/* The __user pointer cast is valid because of the set_fs() */			set_fs(KERNEL_DS);	up = offset ? (off_t __user *) &of : NULL;	ret = sys_sendfile((int)out_fd, (int)in_fd, up, count);	set_fs(old_fs);		if (offset && put_user(of, offset))		return -EFAULT;			return ret;}asmlinkage int compat_sys_sendfile64(int out_fd, int in_fd, compat_loff_t __user *offset, s32 count){	mm_segment_t old_fs = get_fs();	int ret;	loff_t lof;	loff_t __user *up;		if (offset && get_user(lof, offset))		return -EFAULT;			/* The __user pointer cast is valid because of the set_fs() */			set_fs(KERNEL_DS);	up = offset ? (loff_t __user *) &lof : NULL;	ret = sys_sendfile64(out_fd, in_fd, up, count);	set_fs(old_fs);		if (offset && put_user(lof, offset))		return -EFAULT;			return ret;}long compat_sys_execve(unsigned long a0, unsigned long a1, unsigned long a2,		  unsigned long a3, unsigned long a4, unsigned long a5,		  struct pt_regs *regs){	int error;	char * filename;		filename = getname((char __user *) a0);	error = PTR_ERR(filename);	if (IS_ERR(filename))		goto out;	flush_fp_to_thread(current);	flush_altivec_to_thread(current);	error = compat_do_execve(filename, compat_ptr(a1), compat_ptr(a2), regs);	if (error == 0) {		task_lock(current);		current->ptrace &= ~PT_DTRACE;		task_unlock(current);	}	putname(filename);out:	return error;}/* Note: it is necessary to treat option as an unsigned int,  * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_prctl(u32 option, u32 arg2, u32 arg3, u32 arg4, u32 arg5){	return sys_prctl((int)option,			 (unsigned long) arg2,			 (unsigned long) arg3,			 (unsigned long) arg4,			 (unsigned long) arg5);}/* Note: it is necessary to treat pid as an unsigned int,  * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_sched_rr_get_interval(u32 pid, struct compat_timespec __user *interval){	struct timespec t;	int ret;	mm_segment_t old_fs = get_fs ();	/* The __user pointer cast is valid because of the set_fs() */	set_fs (KERNEL_DS);	ret = sys_sched_rr_get_interval((int)pid, (struct timespec __user *) &t);	set_fs (old_fs);	if (put_compat_timespec(&t, interval))		return -EFAULT;	return ret;}asmlinkage int compat_sys_pciconfig_read(u32 bus, u32 dfn, u32 off, u32 len, u32 ubuf){	return sys_pciconfig_read((unsigned long) bus,				  (unsigned long) dfn,				  (unsigned long) off,				  (unsigned long) len,				  compat_ptr(ubuf));}asmlinkage int compat_sys_pciconfig_write(u32 bus, u32 dfn, u32 off, u32 len, u32 ubuf){	return sys_pciconfig_write((unsigned long) bus,				   (unsigned long) dfn,				   (unsigned long) off,				   (unsigned long) len,				   compat_ptr(ubuf));}asmlinkage int compat_sys_pciconfig_iobase(u32 which, u32 in_bus, u32 in_devfn){	return sys_pciconfig_iobase(which, in_bus, in_devfn);}/* Note: it is necessary to treat mode as an unsigned int, * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_access(const char __user * filename, u32 mode){	return sys_access(filename, (int)mode);}/* Note: it is necessary to treat mode as an unsigned int, * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_creat(const char __user * pathname, u32 mode){	return sys_creat(pathname, (int)mode);}/* Note: it is necessary to treat pid and options as unsigned ints, * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_waitpid(u32 pid, unsigned int __user * stat_addr, u32 options){	return sys_waitpid((int)pid, stat_addr, (int)options);}/* Note: it is necessary to treat gidsetsize as an unsigned int, * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_getgroups(u32 gidsetsize, gid_t __user *grouplist){	return sys_getgroups((int)gidsetsize, grouplist);}/* Note: it is necessary to treat pid as an unsigned int, * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_getpgid(u32 pid){	return sys_getpgid((int)pid);}/* Note: it is necessary to treat pid as an unsigned int, * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_getsid(u32 pid){	return sys_getsid((int)pid);}/* Note: it is necessary to treat pid and sig as unsigned ints, * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_kill(u32 pid, u32 sig){	return sys_kill((int)pid, (int)sig);}/* Note: it is necessary to treat mode as an unsigned int, * with the corresponding cast to a signed int to insure that the  * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode) * and the register representation of a signed int (msr in 64-bit mode) is performed. */asmlinkage long compat_sys_mkdir(const char __user * pathname, u32 mode){	return sys_mkdir(pathname, (int)mode);}long compat_sys_nice(u32 increment){	/* sign extend increment */	return sys_nice((int)increment);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -