]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
1da177e4 LT |
2 | /* |
3 | * linux/arch/alpha/kernel/osf_sys.c | |
4 | * | |
5 | * Copyright (C) 1995 Linus Torvalds | |
6 | */ | |
7 | ||
8 | /* | |
9 | * This file handles some of the stranger OSF/1 system call interfaces. | |
10 | * Some of the system calls expect a non-C calling standard, others have | |
11 | * special parameter blocks.. | |
12 | */ | |
13 | ||
14 | #include <linux/errno.h> | |
3f07c014 | 15 | #include <linux/sched/signal.h> |
01042607 | 16 | #include <linux/sched/mm.h> |
68db0cf1 | 17 | #include <linux/sched/task_stack.h> |
32ef5517 | 18 | #include <linux/sched/cputime.h> |
1da177e4 LT |
19 | #include <linux/kernel.h> |
20 | #include <linux/mm.h> | |
21 | #include <linux/smp.h> | |
1da177e4 LT |
22 | #include <linux/stddef.h> |
23 | #include <linux/syscalls.h> | |
24 | #include <linux/unistd.h> | |
25 | #include <linux/ptrace.h> | |
1da177e4 | 26 | #include <linux/user.h> |
1da177e4 LT |
27 | #include <linux/utsname.h> |
28 | #include <linux/time.h> | |
29 | #include <linux/timex.h> | |
30 | #include <linux/major.h> | |
31 | #include <linux/stat.h> | |
32 | #include <linux/mman.h> | |
33 | #include <linux/shm.h> | |
34 | #include <linux/poll.h> | |
35 | #include <linux/file.h> | |
36 | #include <linux/types.h> | |
37 | #include <linux/ipc.h> | |
38 | #include <linux/namei.h> | |
39 | #include <linux/uio.h> | |
40 | #include <linux/vfs.h> | |
4fb3a538 | 41 | #include <linux/rcupdate.h> |
5a0e3ad6 | 42 | #include <linux/slab.h> |
1da177e4 LT |
43 | |
44 | #include <asm/fpu.h> | |
45 | #include <asm/io.h> | |
7c0f6ba6 | 46 | #include <linux/uaccess.h> |
1da177e4 | 47 | #include <asm/sysinfo.h> |
2df7a7d1 | 48 | #include <asm/thread_info.h> |
1da177e4 LT |
49 | #include <asm/hwrpb.h> |
50 | #include <asm/processor.h> | |
51 | ||
1da177e4 LT |
52 | /* |
53 | * Brk needs to return an error. Still support Linux's brk(0) query idiom, | |
54 | * which OSF programs just shouldn't be doing. We're still not quite | |
55 | * identical to OSF as we don't return 0 on success, but doing otherwise | |
56 | * would require changes to libc. Hopefully this is good enough. | |
57 | */ | |
e5d9a90c | 58 | SYSCALL_DEFINE1(osf_brk, unsigned long, brk) |
1da177e4 LT |
59 | { |
60 | unsigned long retval = sys_brk(brk); | |
61 | if (brk && brk != retval) | |
62 | retval = -ENOMEM; | |
63 | return retval; | |
64 | } | |
65 | ||
66 | /* | |
67 | * This is pure guess-work.. | |
68 | */ | |
e5d9a90c IK |
69 | SYSCALL_DEFINE4(osf_set_program_attributes, unsigned long, text_start, |
70 | unsigned long, text_len, unsigned long, bss_start, | |
71 | unsigned long, bss_len) | |
1da177e4 LT |
72 | { |
73 | struct mm_struct *mm; | |
74 | ||
1da177e4 LT |
75 | mm = current->mm; |
76 | mm->end_code = bss_start + bss_len; | |
2444e56b | 77 | mm->start_brk = bss_start + bss_len; |
1da177e4 LT |
78 | mm->brk = bss_start + bss_len; |
79 | #if 0 | |
80 | printk("set_program_attributes(%lx %lx %lx %lx)\n", | |
81 | text_start, text_len, bss_start, bss_len); | |
82 | #endif | |
1da177e4 LT |
83 | return 0; |
84 | } | |
85 | ||
86 | /* | |
87 | * OSF/1 directory handling functions... | |
88 | * | |
89 | * The "getdents()" interface is much more sane: the "basep" stuff is | |
90 | * braindamage (it can't really handle filesystems where the directory | |
91 | * offset differences aren't the same as "d_reclen"). | |
92 | */ | |
93 | #define NAME_OFFSET offsetof (struct osf_dirent, d_name) | |
1da177e4 LT |
94 | |
95 | struct osf_dirent { | |
96 | unsigned int d_ino; | |
97 | unsigned short d_reclen; | |
98 | unsigned short d_namlen; | |
99 | char d_name[1]; | |
100 | }; | |
101 | ||
102 | struct osf_dirent_callback { | |
5c0ba4e0 | 103 | struct dir_context ctx; |
1da177e4 LT |
104 | struct osf_dirent __user *dirent; |
105 | long __user *basep; | |
106 | unsigned int count; | |
107 | int error; | |
108 | }; | |
109 | ||
110 | static int | |
ac7576f4 MS |
111 | osf_filldir(struct dir_context *ctx, const char *name, int namlen, |
112 | loff_t offset, u64 ino, unsigned int d_type) | |
1da177e4 LT |
113 | { |
114 | struct osf_dirent __user *dirent; | |
ac7576f4 MS |
115 | struct osf_dirent_callback *buf = |
116 | container_of(ctx, struct osf_dirent_callback, ctx); | |
180e53a7 | 117 | unsigned int reclen = ALIGN(NAME_OFFSET + namlen + 1, sizeof(u32)); |
afefdbb2 | 118 | unsigned int d_ino; |
1da177e4 LT |
119 | |
120 | buf->error = -EINVAL; /* only used if we fail */ | |
121 | if (reclen > buf->count) | |
122 | return -EINVAL; | |
afefdbb2 | 123 | d_ino = ino; |
645e68ed AV |
124 | if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) { |
125 | buf->error = -EOVERFLOW; | |
afefdbb2 | 126 | return -EOVERFLOW; |
645e68ed | 127 | } |
1da177e4 LT |
128 | if (buf->basep) { |
129 | if (put_user(offset, buf->basep)) | |
645e68ed | 130 | goto Efault; |
1da177e4 LT |
131 | buf->basep = NULL; |
132 | } | |
133 | dirent = buf->dirent; | |
645e68ed AV |
134 | if (put_user(d_ino, &dirent->d_ino) || |
135 | put_user(namlen, &dirent->d_namlen) || | |
136 | put_user(reclen, &dirent->d_reclen) || | |
137 | copy_to_user(dirent->d_name, name, namlen) || | |
1da177e4 | 138 | put_user(0, dirent->d_name + namlen)) |
645e68ed | 139 | goto Efault; |
1da177e4 LT |
140 | dirent = (void __user *)dirent + reclen; |
141 | buf->dirent = dirent; | |
142 | buf->count -= reclen; | |
143 | return 0; | |
645e68ed AV |
144 | Efault: |
145 | buf->error = -EFAULT; | |
146 | return -EFAULT; | |
1da177e4 LT |
147 | } |
148 | ||
e5d9a90c IK |
149 | SYSCALL_DEFINE4(osf_getdirentries, unsigned int, fd, |
150 | struct osf_dirent __user *, dirent, unsigned int, count, | |
151 | long __user *, basep) | |
1da177e4 LT |
152 | { |
153 | int error; | |
63b6df14 | 154 | struct fd arg = fdget_pos(fd); |
ac6614b7 AV |
155 | struct osf_dirent_callback buf = { |
156 | .ctx.actor = osf_filldir, | |
157 | .dirent = dirent, | |
158 | .basep = basep, | |
159 | .count = count | |
160 | }; | |
1da177e4 | 161 | |
2903ff01 AV |
162 | if (!arg.file) |
163 | return -EBADF; | |
1da177e4 | 164 | |
5c0ba4e0 | 165 | error = iterate_dir(arg.file, &buf.ctx); |
53c9c5c0 AV |
166 | if (error >= 0) |
167 | error = buf.error; | |
1da177e4 LT |
168 | if (count != buf.count) |
169 | error = count - buf.count; | |
170 | ||
63b6df14 | 171 | fdput_pos(arg); |
1da177e4 LT |
172 | return error; |
173 | } | |
174 | ||
1da177e4 LT |
175 | #undef NAME_OFFSET |
176 | ||
e5d9a90c IK |
177 | SYSCALL_DEFINE6(osf_mmap, unsigned long, addr, unsigned long, len, |
178 | unsigned long, prot, unsigned long, flags, unsigned long, fd, | |
179 | unsigned long, off) | |
1da177e4 | 180 | { |
f8b72560 | 181 | unsigned long ret = -EINVAL; |
1da177e4 LT |
182 | |
183 | #if 0 | |
184 | if (flags & (_MAP_HASSEMAPHORE | _MAP_INHERIT | _MAP_UNALIGNED)) | |
185 | printk("%s: unimplemented OSF mmap flags %04lx\n", | |
186 | current->comm, flags); | |
187 | #endif | |
f8b72560 AV |
188 | if ((off + PAGE_ALIGN(len)) < off) |
189 | goto out; | |
190 | if (off & ~PAGE_MASK) | |
191 | goto out; | |
a90f590a | 192 | ret = ksys_mmap_pgoff(addr, len, prot, flags, fd, off >> PAGE_SHIFT); |
1da177e4 LT |
193 | out: |
194 | return ret; | |
195 | } | |
196 | ||
7a8bb98c MR |
197 | struct osf_stat { |
198 | int st_dev; | |
199 | int st_pad1; | |
200 | unsigned st_mode; | |
201 | unsigned short st_nlink; | |
202 | short st_nlink_reserved; | |
203 | unsigned st_uid; | |
204 | unsigned st_gid; | |
205 | int st_rdev; | |
206 | int st_ldev; | |
207 | long st_size; | |
208 | int st_pad2; | |
209 | int st_uatime; | |
210 | int st_pad3; | |
211 | int st_umtime; | |
212 | int st_pad4; | |
213 | int st_uctime; | |
214 | int st_pad5; | |
215 | int st_pad6; | |
216 | unsigned st_flags; | |
217 | unsigned st_gen; | |
218 | long st_spare[4]; | |
219 | unsigned st_ino; | |
220 | int st_ino_reserved; | |
221 | int st_atime; | |
222 | int st_atime_reserved; | |
223 | int st_mtime; | |
224 | int st_mtime_reserved; | |
225 | int st_ctime; | |
226 | int st_ctime_reserved; | |
227 | long st_blksize; | |
228 | long st_blocks; | |
229 | }; | |
1da177e4 LT |
230 | |
231 | /* | |
232 | * The OSF/1 statfs structure is much larger, but this should | |
233 | * match the beginning, at least. | |
234 | */ | |
235 | struct osf_statfs { | |
236 | short f_type; | |
237 | short f_flags; | |
238 | int f_fsize; | |
239 | int f_bsize; | |
240 | int f_blocks; | |
241 | int f_bfree; | |
242 | int f_bavail; | |
243 | int f_files; | |
244 | int f_ffree; | |
245 | __kernel_fsid_t f_fsid; | |
246 | }; | |
247 | ||
7a8bb98c MR |
248 | struct osf_statfs64 { |
249 | short f_type; | |
250 | short f_flags; | |
251 | int f_pad1; | |
252 | int f_pad2; | |
253 | int f_pad3; | |
254 | int f_pad4; | |
255 | int f_pad5; | |
256 | int f_pad6; | |
257 | int f_pad7; | |
258 | __kernel_fsid_t f_fsid; | |
259 | u_short f_namemax; | |
260 | short f_reserved1; | |
261 | int f_spare[8]; | |
262 | char f_pad8[90]; | |
263 | char f_pad9[90]; | |
264 | long mount_info[10]; | |
265 | u_long f_flags2; | |
266 | long f_spare2[14]; | |
267 | long f_fsize; | |
268 | long f_bsize; | |
269 | long f_blocks; | |
270 | long f_bfree; | |
271 | long f_bavail; | |
272 | long f_files; | |
273 | long f_ffree; | |
274 | }; | |
275 | ||
276 | static int | |
277 | linux_to_osf_stat(struct kstat *lstat, struct osf_stat __user *osf_stat) | |
278 | { | |
279 | struct osf_stat tmp = { 0 }; | |
280 | ||
281 | tmp.st_dev = lstat->dev; | |
282 | tmp.st_mode = lstat->mode; | |
283 | tmp.st_nlink = lstat->nlink; | |
f31389d5 EB |
284 | tmp.st_uid = from_kuid_munged(current_user_ns(), lstat->uid); |
285 | tmp.st_gid = from_kgid_munged(current_user_ns(), lstat->gid); | |
7a8bb98c MR |
286 | tmp.st_rdev = lstat->rdev; |
287 | tmp.st_ldev = lstat->rdev; | |
288 | tmp.st_size = lstat->size; | |
289 | tmp.st_uatime = lstat->atime.tv_nsec / 1000; | |
290 | tmp.st_umtime = lstat->mtime.tv_nsec / 1000; | |
291 | tmp.st_uctime = lstat->ctime.tv_nsec / 1000; | |
292 | tmp.st_ino = lstat->ino; | |
293 | tmp.st_atime = lstat->atime.tv_sec; | |
294 | tmp.st_mtime = lstat->mtime.tv_sec; | |
295 | tmp.st_ctime = lstat->ctime.tv_sec; | |
296 | tmp.st_blksize = lstat->blksize; | |
297 | tmp.st_blocks = lstat->blocks; | |
298 | ||
299 | return copy_to_user(osf_stat, &tmp, sizeof(tmp)) ? -EFAULT : 0; | |
300 | } | |
301 | ||
1da177e4 LT |
302 | static int |
303 | linux_to_osf_statfs(struct kstatfs *linux_stat, struct osf_statfs __user *osf_stat, | |
304 | unsigned long bufsiz) | |
305 | { | |
306 | struct osf_statfs tmp_stat; | |
307 | ||
308 | tmp_stat.f_type = linux_stat->f_type; | |
309 | tmp_stat.f_flags = 0; /* mount flags */ | |
310 | tmp_stat.f_fsize = linux_stat->f_frsize; | |
311 | tmp_stat.f_bsize = linux_stat->f_bsize; | |
312 | tmp_stat.f_blocks = linux_stat->f_blocks; | |
313 | tmp_stat.f_bfree = linux_stat->f_bfree; | |
314 | tmp_stat.f_bavail = linux_stat->f_bavail; | |
315 | tmp_stat.f_files = linux_stat->f_files; | |
316 | tmp_stat.f_ffree = linux_stat->f_ffree; | |
317 | tmp_stat.f_fsid = linux_stat->f_fsid; | |
318 | if (bufsiz > sizeof(tmp_stat)) | |
319 | bufsiz = sizeof(tmp_stat); | |
320 | return copy_to_user(osf_stat, &tmp_stat, bufsiz) ? -EFAULT : 0; | |
321 | } | |
322 | ||
7a8bb98c MR |
323 | static int |
324 | linux_to_osf_statfs64(struct kstatfs *linux_stat, struct osf_statfs64 __user *osf_stat, | |
325 | unsigned long bufsiz) | |
326 | { | |
327 | struct osf_statfs64 tmp_stat = { 0 }; | |
328 | ||
329 | tmp_stat.f_type = linux_stat->f_type; | |
330 | tmp_stat.f_fsize = linux_stat->f_frsize; | |
331 | tmp_stat.f_bsize = linux_stat->f_bsize; | |
332 | tmp_stat.f_blocks = linux_stat->f_blocks; | |
333 | tmp_stat.f_bfree = linux_stat->f_bfree; | |
334 | tmp_stat.f_bavail = linux_stat->f_bavail; | |
335 | tmp_stat.f_files = linux_stat->f_files; | |
336 | tmp_stat.f_ffree = linux_stat->f_ffree; | |
337 | tmp_stat.f_fsid = linux_stat->f_fsid; | |
338 | if (bufsiz > sizeof(tmp_stat)) | |
339 | bufsiz = sizeof(tmp_stat); | |
340 | return copy_to_user(osf_stat, &tmp_stat, bufsiz) ? -EFAULT : 0; | |
341 | } | |
342 | ||
c8b91acc AV |
343 | SYSCALL_DEFINE3(osf_statfs, const char __user *, pathname, |
344 | struct osf_statfs __user *, buffer, unsigned long, bufsiz) | |
1da177e4 LT |
345 | { |
346 | struct kstatfs linux_stat; | |
c8b91acc | 347 | int error = user_statfs(pathname, &linux_stat); |
1da177e4 LT |
348 | if (!error) |
349 | error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz); | |
350 | return error; | |
351 | } | |
352 | ||
7a8bb98c MR |
353 | SYSCALL_DEFINE2(osf_stat, char __user *, name, struct osf_stat __user *, buf) |
354 | { | |
355 | struct kstat stat; | |
356 | int error; | |
357 | ||
358 | error = vfs_stat(name, &stat); | |
359 | if (error) | |
360 | return error; | |
361 | ||
362 | return linux_to_osf_stat(&stat, buf); | |
363 | } | |
364 | ||
365 | SYSCALL_DEFINE2(osf_lstat, char __user *, name, struct osf_stat __user *, buf) | |
366 | { | |
367 | struct kstat stat; | |
368 | int error; | |
369 | ||
370 | error = vfs_lstat(name, &stat); | |
371 | if (error) | |
372 | return error; | |
373 | ||
374 | return linux_to_osf_stat(&stat, buf); | |
375 | } | |
376 | ||
377 | SYSCALL_DEFINE2(osf_fstat, int, fd, struct osf_stat __user *, buf) | |
378 | { | |
379 | struct kstat stat; | |
380 | int error; | |
381 | ||
382 | error = vfs_fstat(fd, &stat); | |
383 | if (error) | |
384 | return error; | |
385 | ||
386 | return linux_to_osf_stat(&stat, buf); | |
387 | } | |
388 | ||
e5d9a90c IK |
389 | SYSCALL_DEFINE3(osf_fstatfs, unsigned long, fd, |
390 | struct osf_statfs __user *, buffer, unsigned long, bufsiz) | |
1da177e4 | 391 | { |
c8b91acc AV |
392 | struct kstatfs linux_stat; |
393 | int error = fd_statfs(fd, &linux_stat); | |
394 | if (!error) | |
395 | error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz); | |
396 | return error; | |
1da177e4 LT |
397 | } |
398 | ||
7a8bb98c MR |
399 | SYSCALL_DEFINE3(osf_statfs64, char __user *, pathname, |
400 | struct osf_statfs64 __user *, buffer, unsigned long, bufsiz) | |
401 | { | |
402 | struct kstatfs linux_stat; | |
403 | int error = user_statfs(pathname, &linux_stat); | |
404 | if (!error) | |
405 | error = linux_to_osf_statfs64(&linux_stat, buffer, bufsiz); | |
406 | return error; | |
407 | } | |
408 | ||
409 | SYSCALL_DEFINE3(osf_fstatfs64, unsigned long, fd, | |
410 | struct osf_statfs64 __user *, buffer, unsigned long, bufsiz) | |
411 | { | |
412 | struct kstatfs linux_stat; | |
413 | int error = fd_statfs(fd, &linux_stat); | |
414 | if (!error) | |
415 | error = linux_to_osf_statfs64(&linux_stat, buffer, bufsiz); | |
416 | return error; | |
417 | } | |
418 | ||
1da177e4 LT |
419 | /* |
420 | * Uhh.. OSF/1 mount parameters aren't exactly obvious.. | |
421 | * | |
422 | * Although to be frank, neither are the native Linux/i386 ones.. | |
423 | */ | |
424 | struct ufs_args { | |
425 | char __user *devname; | |
426 | int flags; | |
427 | uid_t exroot; | |
428 | }; | |
429 | ||
430 | struct cdfs_args { | |
431 | char __user *devname; | |
432 | int flags; | |
433 | uid_t exroot; | |
434 | ||
435 | /* This has lots more here, which Linux handles with the option block | |
436 | but I'm too lazy to do the translation into ASCII. */ | |
437 | }; | |
438 | ||
439 | struct procfs_args { | |
440 | char __user *devname; | |
441 | int flags; | |
442 | uid_t exroot; | |
443 | }; | |
444 | ||
445 | /* | |
446 | * We can't actually handle ufs yet, so we translate UFS mounts to | |
447 | * ext2fs mounts. I wouldn't mind a UFS filesystem, but the UFS | |
448 | * layout is so braindead it's a major headache doing it. | |
449 | * | |
450 | * Just how long ago was it written? OTOH our UFS driver may be still | |
451 | * unhappy with OSF UFS. [CHECKME] | |
452 | */ | |
453 | static int | |
5e6123f3 SL |
454 | osf_ufs_mount(const char __user *dirname, |
455 | struct ufs_args __user *args, int flags) | |
1da177e4 LT |
456 | { |
457 | int retval; | |
458 | struct cdfs_args tmp; | |
91a27b2a | 459 | struct filename *devname; |
1da177e4 LT |
460 | |
461 | retval = -EFAULT; | |
462 | if (copy_from_user(&tmp, args, sizeof(tmp))) | |
463 | goto out; | |
464 | devname = getname(tmp.devname); | |
465 | retval = PTR_ERR(devname); | |
466 | if (IS_ERR(devname)) | |
467 | goto out; | |
91a27b2a | 468 | retval = do_mount(devname->name, dirname, "ext2", flags, NULL); |
1da177e4 LT |
469 | putname(devname); |
470 | out: | |
471 | return retval; | |
472 | } | |
473 | ||
474 | static int | |
5e6123f3 SL |
475 | osf_cdfs_mount(const char __user *dirname, |
476 | struct cdfs_args __user *args, int flags) | |
1da177e4 LT |
477 | { |
478 | int retval; | |
479 | struct cdfs_args tmp; | |
91a27b2a | 480 | struct filename *devname; |
1da177e4 LT |
481 | |
482 | retval = -EFAULT; | |
483 | if (copy_from_user(&tmp, args, sizeof(tmp))) | |
484 | goto out; | |
485 | devname = getname(tmp.devname); | |
486 | retval = PTR_ERR(devname); | |
487 | if (IS_ERR(devname)) | |
488 | goto out; | |
91a27b2a | 489 | retval = do_mount(devname->name, dirname, "iso9660", flags, NULL); |
1da177e4 LT |
490 | putname(devname); |
491 | out: | |
492 | return retval; | |
493 | } | |
494 | ||
495 | static int | |
5e6123f3 SL |
496 | osf_procfs_mount(const char __user *dirname, |
497 | struct procfs_args __user *args, int flags) | |
1da177e4 LT |
498 | { |
499 | struct procfs_args tmp; | |
500 | ||
501 | if (copy_from_user(&tmp, args, sizeof(tmp))) | |
502 | return -EFAULT; | |
503 | ||
504 | return do_mount("", dirname, "proc", flags, NULL); | |
505 | } | |
506 | ||
c7887325 | 507 | SYSCALL_DEFINE4(osf_mount, unsigned long, typenr, const char __user *, path, |
e5d9a90c | 508 | int, flag, void __user *, data) |
1da177e4 | 509 | { |
77079dbe | 510 | int retval; |
1da177e4 | 511 | |
1da177e4 LT |
512 | switch (typenr) { |
513 | case 1: | |
5e6123f3 | 514 | retval = osf_ufs_mount(path, data, flag); |
1da177e4 LT |
515 | break; |
516 | case 6: | |
5e6123f3 | 517 | retval = osf_cdfs_mount(path, data, flag); |
1da177e4 LT |
518 | break; |
519 | case 9: | |
5e6123f3 | 520 | retval = osf_procfs_mount(path, data, flag); |
1da177e4 LT |
521 | break; |
522 | default: | |
77079dbe | 523 | retval = -EINVAL; |
1da177e4 LT |
524 | printk("osf_mount(%ld, %x)\n", typenr, flag); |
525 | } | |
5e6123f3 | 526 | |
1da177e4 LT |
527 | return retval; |
528 | } | |
529 | ||
e5d9a90c | 530 | SYSCALL_DEFINE1(osf_utsname, char __user *, name) |
1da177e4 LT |
531 | { |
532 | int error; | |
533 | ||
534 | down_read(&uts_sem); | |
535 | error = -EFAULT; | |
e9ff3990 | 536 | if (copy_to_user(name + 0, utsname()->sysname, 32)) |
1da177e4 | 537 | goto out; |
e9ff3990 | 538 | if (copy_to_user(name + 32, utsname()->nodename, 32)) |
1da177e4 | 539 | goto out; |
e9ff3990 | 540 | if (copy_to_user(name + 64, utsname()->release, 32)) |
1da177e4 | 541 | goto out; |
e9ff3990 | 542 | if (copy_to_user(name + 96, utsname()->version, 32)) |
1da177e4 | 543 | goto out; |
e9ff3990 | 544 | if (copy_to_user(name + 128, utsname()->machine, 32)) |
1da177e4 LT |
545 | goto out; |
546 | ||
547 | error = 0; | |
548 | out: | |
549 | up_read(&uts_sem); | |
550 | return error; | |
551 | } | |
552 | ||
e5d9a90c | 553 | SYSCALL_DEFINE0(getpagesize) |
1da177e4 LT |
554 | { |
555 | return PAGE_SIZE; | |
556 | } | |
557 | ||
e5d9a90c | 558 | SYSCALL_DEFINE0(getdtablesize) |
1da177e4 | 559 | { |
9cfe015a | 560 | return sysctl_nr_open; |
1da177e4 LT |
561 | } |
562 | ||
563 | /* | |
564 | * For compatibility with OSF/1 only. Use utsname(2) instead. | |
565 | */ | |
e5d9a90c | 566 | SYSCALL_DEFINE2(osf_getdomainname, char __user *, name, int, namelen) |
1da177e4 | 567 | { |
9ba3eb51 AV |
568 | int len, err = 0; |
569 | char *kname; | |
1da177e4 | 570 | |
9ba3eb51 AV |
571 | if (namelen > 32) |
572 | namelen = 32; | |
1da177e4 LT |
573 | |
574 | down_read(&uts_sem); | |
9ba3eb51 AV |
575 | kname = utsname()->domainname; |
576 | len = strnlen(kname, namelen); | |
577 | if (copy_to_user(name, kname, min(len + 1, namelen))) | |
578 | err = -EFAULT; | |
1da177e4 LT |
579 | up_read(&uts_sem); |
580 | ||
9ba3eb51 | 581 | return err; |
1da177e4 LT |
582 | } |
583 | ||
1da177e4 LT |
584 | /* |
585 | * The following stuff should move into a header file should it ever | |
586 | * be labeled "officially supported." Right now, there is just enough | |
587 | * support to avoid applications (such as tar) printing error | |
588 | * messages. The attributes are not really implemented. | |
589 | */ | |
590 | ||
591 | /* | |
592 | * Values for Property list entry flag | |
593 | */ | |
594 | #define PLE_PROPAGATE_ON_COPY 0x1 /* cp(1) will copy entry | |
595 | by default */ | |
596 | #define PLE_FLAG_MASK 0x1 /* Valid flag values */ | |
597 | #define PLE_FLAG_ALL -1 /* All flag value */ | |
598 | ||
599 | struct proplistname_args { | |
600 | unsigned int pl_mask; | |
601 | unsigned int pl_numnames; | |
602 | char **pl_names; | |
603 | }; | |
604 | ||
605 | union pl_args { | |
606 | struct setargs { | |
607 | char __user *path; | |
608 | long follow; | |
609 | long nbytes; | |
610 | char __user *buf; | |
611 | } set; | |
612 | struct fsetargs { | |
613 | long fd; | |
614 | long nbytes; | |
615 | char __user *buf; | |
616 | } fset; | |
617 | struct getargs { | |
618 | char __user *path; | |
619 | long follow; | |
620 | struct proplistname_args __user *name_args; | |
621 | long nbytes; | |
622 | char __user *buf; | |
623 | int __user *min_buf_size; | |
624 | } get; | |
625 | struct fgetargs { | |
626 | long fd; | |
627 | struct proplistname_args __user *name_args; | |
628 | long nbytes; | |
629 | char __user *buf; | |
630 | int __user *min_buf_size; | |
631 | } fget; | |
632 | struct delargs { | |
633 | char __user *path; | |
634 | long follow; | |
635 | struct proplistname_args __user *name_args; | |
636 | } del; | |
637 | struct fdelargs { | |
638 | long fd; | |
639 | struct proplistname_args __user *name_args; | |
640 | } fdel; | |
641 | }; | |
642 | ||
643 | enum pl_code { | |
644 | PL_SET = 1, PL_FSET = 2, | |
645 | PL_GET = 3, PL_FGET = 4, | |
646 | PL_DEL = 5, PL_FDEL = 6 | |
647 | }; | |
648 | ||
e5d9a90c IK |
649 | SYSCALL_DEFINE2(osf_proplist_syscall, enum pl_code, code, |
650 | union pl_args __user *, args) | |
1da177e4 LT |
651 | { |
652 | long error; | |
653 | int __user *min_buf_size_ptr; | |
654 | ||
1da177e4 LT |
655 | switch (code) { |
656 | case PL_SET: | |
657 | if (get_user(error, &args->set.nbytes)) | |
658 | error = -EFAULT; | |
659 | break; | |
660 | case PL_FSET: | |
661 | if (get_user(error, &args->fset.nbytes)) | |
662 | error = -EFAULT; | |
663 | break; | |
664 | case PL_GET: | |
665 | error = get_user(min_buf_size_ptr, &args->get.min_buf_size); | |
666 | if (error) | |
667 | break; | |
668 | error = put_user(0, min_buf_size_ptr); | |
669 | break; | |
670 | case PL_FGET: | |
671 | error = get_user(min_buf_size_ptr, &args->fget.min_buf_size); | |
672 | if (error) | |
673 | break; | |
674 | error = put_user(0, min_buf_size_ptr); | |
675 | break; | |
676 | case PL_DEL: | |
677 | case PL_FDEL: | |
678 | error = 0; | |
679 | break; | |
680 | default: | |
681 | error = -EOPNOTSUPP; | |
682 | break; | |
683 | }; | |
1da177e4 LT |
684 | return error; |
685 | } | |
686 | ||
e5d9a90c IK |
687 | SYSCALL_DEFINE2(osf_sigstack, struct sigstack __user *, uss, |
688 | struct sigstack __user *, uoss) | |
1da177e4 LT |
689 | { |
690 | unsigned long usp = rdusp(); | |
691 | unsigned long oss_sp = current->sas_ss_sp + current->sas_ss_size; | |
692 | unsigned long oss_os = on_sig_stack(usp); | |
693 | int error; | |
694 | ||
695 | if (uss) { | |
696 | void __user *ss_sp; | |
697 | ||
698 | error = -EFAULT; | |
699 | if (get_user(ss_sp, &uss->ss_sp)) | |
700 | goto out; | |
701 | ||
702 | /* If the current stack was set with sigaltstack, don't | |
703 | swap stacks while we are on it. */ | |
704 | error = -EPERM; | |
705 | if (current->sas_ss_sp && on_sig_stack(usp)) | |
706 | goto out; | |
707 | ||
708 | /* Since we don't know the extent of the stack, and we don't | |
709 | track onstack-ness, but rather calculate it, we must | |
710 | presume a size. Ho hum this interface is lossy. */ | |
711 | current->sas_ss_sp = (unsigned long)ss_sp - SIGSTKSZ; | |
712 | current->sas_ss_size = SIGSTKSZ; | |
713 | } | |
714 | ||
715 | if (uoss) { | |
716 | error = -EFAULT; | |
8d2fd30e AV |
717 | if (put_user(oss_sp, &uoss->ss_sp) || |
718 | put_user(oss_os, &uoss->ss_onstack)) | |
1da177e4 LT |
719 | goto out; |
720 | } | |
721 | ||
722 | error = 0; | |
723 | out: | |
724 | return error; | |
725 | } | |
726 | ||
e5d9a90c | 727 | SYSCALL_DEFINE3(osf_sysinfo, int, command, char __user *, buf, long, count) |
1da177e4 | 728 | { |
31019075 | 729 | const char *sysinfo_table[] = { |
e9ff3990 SH |
730 | utsname()->sysname, |
731 | utsname()->nodename, | |
732 | utsname()->release, | |
733 | utsname()->version, | |
734 | utsname()->machine, | |
1da177e4 LT |
735 | "alpha", /* instruction set architecture */ |
736 | "dummy", /* hardware serial number */ | |
737 | "dummy", /* hardware manufacturer */ | |
738 | "dummy", /* secure RPC domain */ | |
739 | }; | |
740 | unsigned long offset; | |
31019075 | 741 | const char *res; |
1da177e4 LT |
742 | long len, err = -EINVAL; |
743 | ||
744 | offset = command-1; | |
25c8716c | 745 | if (offset >= ARRAY_SIZE(sysinfo_table)) { |
1da177e4 LT |
746 | /* Digital UNIX has a few unpublished interfaces here */ |
747 | printk("sysinfo(%d)", command); | |
748 | goto out; | |
749 | } | |
25c8716c | 750 | |
1da177e4 LT |
751 | down_read(&uts_sem); |
752 | res = sysinfo_table[offset]; | |
753 | len = strlen(res)+1; | |
21c5977a | 754 | if ((unsigned long)len > (unsigned long)count) |
1da177e4 LT |
755 | len = count; |
756 | if (copy_to_user(buf, res, len)) | |
757 | err = -EFAULT; | |
758 | else | |
759 | err = 0; | |
760 | up_read(&uts_sem); | |
761 | out: | |
762 | return err; | |
763 | } | |
764 | ||
e5d9a90c IK |
765 | SYSCALL_DEFINE5(osf_getsysinfo, unsigned long, op, void __user *, buffer, |
766 | unsigned long, nbytes, int __user *, start, void __user *, arg) | |
1da177e4 LT |
767 | { |
768 | unsigned long w; | |
769 | struct percpu_struct *cpu; | |
770 | ||
771 | switch (op) { | |
772 | case GSI_IEEE_FP_CONTROL: | |
773 | /* Return current software fp control & status bits. */ | |
774 | /* Note that DU doesn't verify available space here. */ | |
775 | ||
776 | w = current_thread_info()->ieee_state & IEEE_SW_MASK; | |
777 | w = swcr_update_status(w, rdfpcr()); | |
778 | if (put_user(w, (unsigned long __user *) buffer)) | |
779 | return -EFAULT; | |
780 | return 0; | |
781 | ||
782 | case GSI_IEEE_STATE_AT_SIGNAL: | |
783 | /* | |
784 | * Not sure anybody will ever use this weird stuff. These | |
785 | * ops can be used (under OSF/1) to set the fpcr that should | |
786 | * be used when a signal handler starts executing. | |
787 | */ | |
788 | break; | |
789 | ||
790 | case GSI_UACPROC: | |
791 | if (nbytes < sizeof(unsigned int)) | |
792 | return -EINVAL; | |
3185bd26 | 793 | w = current_thread_info()->status & UAC_BITMASK; |
2df7a7d1 ST |
794 | if (put_user(w, (unsigned int __user *)buffer)) |
795 | return -EFAULT; | |
1da177e4 LT |
796 | return 1; |
797 | ||
798 | case GSI_PROC_TYPE: | |
799 | if (nbytes < sizeof(unsigned long)) | |
800 | return -EINVAL; | |
801 | cpu = (struct percpu_struct*) | |
802 | ((char*)hwrpb + hwrpb->processor_offset); | |
803 | w = cpu->type; | |
804 | if (put_user(w, (unsigned long __user*)buffer)) | |
805 | return -EFAULT; | |
806 | return 1; | |
807 | ||
808 | case GSI_GET_HWRPB: | |
21c5977a | 809 | if (nbytes > sizeof(*hwrpb)) |
1da177e4 LT |
810 | return -EINVAL; |
811 | if (copy_to_user(buffer, hwrpb, nbytes) != 0) | |
812 | return -EFAULT; | |
813 | return 1; | |
814 | ||
815 | default: | |
816 | break; | |
817 | } | |
818 | ||
819 | return -EOPNOTSUPP; | |
820 | } | |
821 | ||
e5d9a90c IK |
822 | SYSCALL_DEFINE5(osf_setsysinfo, unsigned long, op, void __user *, buffer, |
823 | unsigned long, nbytes, int __user *, start, void __user *, arg) | |
1da177e4 LT |
824 | { |
825 | switch (op) { | |
826 | case SSI_IEEE_FP_CONTROL: { | |
827 | unsigned long swcr, fpcr; | |
828 | unsigned int *state; | |
829 | ||
830 | /* | |
831 | * Alpha Architecture Handbook 4.7.7.3: | |
832 | * To be fully IEEE compiant, we must track the current IEEE | |
c3a2ddee | 833 | * exception state in software, because spurious bits can be |
1da177e4 LT |
834 | * set in the trap shadow of a software-complete insn. |
835 | */ | |
836 | ||
837 | if (get_user(swcr, (unsigned long __user *)buffer)) | |
838 | return -EFAULT; | |
839 | state = ¤t_thread_info()->ieee_state; | |
840 | ||
841 | /* Update softare trap enable bits. */ | |
842 | *state = (*state & ~IEEE_SW_MASK) | (swcr & IEEE_SW_MASK); | |
843 | ||
844 | /* Update the real fpcr. */ | |
845 | fpcr = rdfpcr() & FPCR_DYN_MASK; | |
846 | fpcr |= ieee_swcr_to_fpcr(swcr); | |
847 | wrfpcr(fpcr); | |
848 | ||
849 | return 0; | |
850 | } | |
851 | ||
852 | case SSI_IEEE_RAISE_EXCEPTION: { | |
853 | unsigned long exc, swcr, fpcr, fex; | |
854 | unsigned int *state; | |
855 | ||
856 | if (get_user(exc, (unsigned long __user *)buffer)) | |
857 | return -EFAULT; | |
858 | state = ¤t_thread_info()->ieee_state; | |
859 | exc &= IEEE_STATUS_MASK; | |
860 | ||
861 | /* Update softare trap enable bits. */ | |
862 | swcr = (*state & IEEE_SW_MASK) | exc; | |
863 | *state |= exc; | |
864 | ||
865 | /* Update the real fpcr. */ | |
866 | fpcr = rdfpcr(); | |
867 | fpcr |= ieee_swcr_to_fpcr(swcr); | |
868 | wrfpcr(fpcr); | |
869 | ||
870 | /* If any exceptions set by this call, and are unmasked, | |
871 | send a signal. Old exceptions are not signaled. */ | |
872 | fex = (exc >> IEEE_STATUS_TO_EXCSUM_SHIFT) & swcr; | |
873 | if (fex) { | |
4cc13e4f | 874 | int si_code = FPE_FLTUNK; |
1da177e4 LT |
875 | |
876 | if (fex & IEEE_TRAP_ENABLE_DNO) si_code = FPE_FLTUND; | |
877 | if (fex & IEEE_TRAP_ENABLE_INE) si_code = FPE_FLTRES; | |
878 | if (fex & IEEE_TRAP_ENABLE_UNF) si_code = FPE_FLTUND; | |
879 | if (fex & IEEE_TRAP_ENABLE_OVF) si_code = FPE_FLTOVF; | |
880 | if (fex & IEEE_TRAP_ENABLE_DZE) si_code = FPE_FLTDIV; | |
881 | if (fex & IEEE_TRAP_ENABLE_INV) si_code = FPE_FLTINV; | |
882 | ||
5f50245b EB |
883 | send_sig_fault(SIGFPE, si_code, |
884 | (void __user *)NULL, /* FIXME */ | |
885 | 0, current); | |
1da177e4 LT |
886 | } |
887 | return 0; | |
888 | } | |
889 | ||
890 | case SSI_IEEE_STATE_AT_SIGNAL: | |
891 | case SSI_IEEE_IGNORE_STATE_AT_SIGNAL: | |
892 | /* | |
893 | * Not sure anybody will ever use this weird stuff. These | |
894 | * ops can be used (under OSF/1) to set the fpcr that should | |
895 | * be used when a signal handler starts executing. | |
896 | */ | |
897 | break; | |
898 | ||
899 | case SSI_NVPAIRS: { | |
3185bd26 AV |
900 | unsigned __user *p = buffer; |
901 | unsigned i; | |
1da177e4 | 902 | |
3185bd26 AV |
903 | for (i = 0, p = buffer; i < nbytes; ++i, p += 2) { |
904 | unsigned v, w, status; | |
1da177e4 | 905 | |
3185bd26 | 906 | if (get_user(v, p) || get_user(w, p + 1)) |
1da177e4 LT |
907 | return -EFAULT; |
908 | switch (v) { | |
909 | case SSIN_UACPROC: | |
3185bd26 AV |
910 | w &= UAC_BITMASK; |
911 | status = current_thread_info()->status; | |
912 | status = (status & ~UAC_BITMASK) | w; | |
913 | current_thread_info()->status = status; | |
1da177e4 LT |
914 | break; |
915 | ||
916 | default: | |
917 | return -EOPNOTSUPP; | |
918 | } | |
919 | } | |
920 | return 0; | |
921 | } | |
922 | ||
50744dee MR |
923 | case SSI_LMF: |
924 | return 0; | |
925 | ||
1da177e4 LT |
926 | default: |
927 | break; | |
928 | } | |
929 | ||
930 | return -EOPNOTSUPP; | |
931 | } | |
932 | ||
933 | /* Translations due to the fact that OSF's time_t is an int. Which | |
934 | affects all sorts of things, like timeval and itimerval. */ | |
935 | ||
936 | extern struct timezone sys_tz; | |
1da177e4 LT |
937 | |
938 | struct timeval32 | |
939 | { | |
940 | int tv_sec, tv_usec; | |
941 | }; | |
942 | ||
943 | struct itimerval32 | |
944 | { | |
945 | struct timeval32 it_interval; | |
946 | struct timeval32 it_value; | |
947 | }; | |
948 | ||
949 | static inline long | |
ce4c2535 | 950 | get_tv32(struct timespec64 *o, struct timeval32 __user *i) |
1da177e4 | 951 | { |
1cc6c463 AV |
952 | struct timeval32 tv; |
953 | if (copy_from_user(&tv, i, sizeof(struct timeval32))) | |
954 | return -EFAULT; | |
955 | o->tv_sec = tv.tv_sec; | |
ce4c2535 | 956 | o->tv_nsec = tv.tv_usec * NSEC_PER_USEC; |
1cc6c463 | 957 | return 0; |
1da177e4 LT |
958 | } |
959 | ||
960 | static inline long | |
ce4c2535 AB |
961 | put_tv32(struct timeval32 __user *o, struct timespec64 *i) |
962 | { | |
963 | return copy_to_user(o, &(struct timeval32){ | |
964 | .tv_sec = i->tv_sec, | |
965 | .tv_usec = i->tv_nsec / NSEC_PER_USEC}, | |
966 | sizeof(struct timeval32)); | |
967 | } | |
968 | ||
969 | static inline long | |
970 | put_tv_to_tv32(struct timeval32 __user *o, struct timeval *i) | |
1da177e4 | 971 | { |
1cc6c463 | 972 | return copy_to_user(o, &(struct timeval32){ |
47669fb6 AB |
973 | .tv_sec = i->tv_sec, |
974 | .tv_usec = i->tv_usec}, | |
1cc6c463 | 975 | sizeof(struct timeval32)); |
1da177e4 LT |
976 | } |
977 | ||
978 | static inline long | |
979 | get_it32(struct itimerval *o, struct itimerval32 __user *i) | |
980 | { | |
1cc6c463 AV |
981 | struct itimerval32 itv; |
982 | if (copy_from_user(&itv, i, sizeof(struct itimerval32))) | |
983 | return -EFAULT; | |
984 | o->it_interval.tv_sec = itv.it_interval.tv_sec; | |
985 | o->it_interval.tv_usec = itv.it_interval.tv_usec; | |
986 | o->it_value.tv_sec = itv.it_value.tv_sec; | |
987 | o->it_value.tv_usec = itv.it_value.tv_usec; | |
988 | return 0; | |
1da177e4 LT |
989 | } |
990 | ||
991 | static inline long | |
992 | put_it32(struct itimerval32 __user *o, struct itimerval *i) | |
993 | { | |
1cc6c463 AV |
994 | return copy_to_user(o, &(struct itimerval32){ |
995 | .it_interval.tv_sec = o->it_interval.tv_sec, | |
996 | .it_interval.tv_usec = o->it_interval.tv_usec, | |
997 | .it_value.tv_sec = o->it_value.tv_sec, | |
998 | .it_value.tv_usec = o->it_value.tv_usec}, | |
999 | sizeof(struct itimerval32)); | |
1da177e4 LT |
1000 | } |
1001 | ||
1002 | static inline void | |
1003 | jiffies_to_timeval32(unsigned long jiffies, struct timeval32 *value) | |
1004 | { | |
1005 | value->tv_usec = (jiffies % HZ) * (1000000L / HZ); | |
1006 | value->tv_sec = jiffies / HZ; | |
1007 | } | |
1008 | ||
e5d9a90c IK |
1009 | SYSCALL_DEFINE2(osf_gettimeofday, struct timeval32 __user *, tv, |
1010 | struct timezone __user *, tz) | |
1da177e4 LT |
1011 | { |
1012 | if (tv) { | |
ce4c2535 AB |
1013 | struct timespec64 kts; |
1014 | ||
1015 | ktime_get_real_ts64(&kts); | |
1016 | if (put_tv32(tv, &kts)) | |
1da177e4 LT |
1017 | return -EFAULT; |
1018 | } | |
1019 | if (tz) { | |
1020 | if (copy_to_user(tz, &sys_tz, sizeof(sys_tz))) | |
1021 | return -EFAULT; | |
1022 | } | |
1023 | return 0; | |
1024 | } | |
1025 | ||
e5d9a90c IK |
1026 | SYSCALL_DEFINE2(osf_settimeofday, struct timeval32 __user *, tv, |
1027 | struct timezone __user *, tz) | |
1da177e4 | 1028 | { |
ce4c2535 | 1029 | struct timespec64 kts; |
1da177e4 LT |
1030 | struct timezone ktz; |
1031 | ||
1032 | if (tv) { | |
ce4c2535 | 1033 | if (get_tv32(&kts, tv)) |
1da177e4 LT |
1034 | return -EFAULT; |
1035 | } | |
1036 | if (tz) { | |
1037 | if (copy_from_user(&ktz, tz, sizeof(*tz))) | |
1038 | return -EFAULT; | |
1039 | } | |
1040 | ||
ce4c2535 | 1041 | return do_sys_settimeofday64(tv ? &kts : NULL, tz ? &ktz : NULL); |
1da177e4 LT |
1042 | } |
1043 | ||
baa73d9e NP |
1044 | asmlinkage long sys_ni_posix_timers(void); |
1045 | ||
e5d9a90c | 1046 | SYSCALL_DEFINE2(osf_getitimer, int, which, struct itimerval32 __user *, it) |
1da177e4 LT |
1047 | { |
1048 | struct itimerval kit; | |
1049 | int error; | |
1050 | ||
baa73d9e NP |
1051 | if (!IS_ENABLED(CONFIG_POSIX_TIMERS)) |
1052 | return sys_ni_posix_timers(); | |
1053 | ||
1da177e4 LT |
1054 | error = do_getitimer(which, &kit); |
1055 | if (!error && put_it32(it, &kit)) | |
1056 | error = -EFAULT; | |
1057 | ||
1058 | return error; | |
1059 | } | |
1060 | ||
e5d9a90c IK |
1061 | SYSCALL_DEFINE3(osf_setitimer, int, which, struct itimerval32 __user *, in, |
1062 | struct itimerval32 __user *, out) | |
1da177e4 LT |
1063 | { |
1064 | struct itimerval kin, kout; | |
1065 | int error; | |
1066 | ||
baa73d9e NP |
1067 | if (!IS_ENABLED(CONFIG_POSIX_TIMERS)) |
1068 | return sys_ni_posix_timers(); | |
1069 | ||
1da177e4 LT |
1070 | if (in) { |
1071 | if (get_it32(&kin, in)) | |
1072 | return -EFAULT; | |
1073 | } else | |
1074 | memset(&kin, 0, sizeof(kin)); | |
1075 | ||
1076 | error = do_setitimer(which, &kin, out ? &kout : NULL); | |
1077 | if (error || !out) | |
1078 | return error; | |
1079 | ||
1080 | if (put_it32(out, &kout)) | |
1081 | return -EFAULT; | |
1082 | ||
1083 | return 0; | |
1084 | ||
1085 | } | |
1086 | ||
c7887325 | 1087 | SYSCALL_DEFINE2(osf_utimes, const char __user *, filename, |
e5d9a90c | 1088 | struct timeval32 __user *, tvs) |
1da177e4 | 1089 | { |
ce4c2535 | 1090 | struct timespec64 tv[2]; |
1da177e4 LT |
1091 | |
1092 | if (tvs) { | |
ce4c2535 AB |
1093 | if (get_tv32(&tv[0], &tvs[0]) || |
1094 | get_tv32(&tv[1], &tvs[1])) | |
1da177e4 | 1095 | return -EFAULT; |
1c710c89 | 1096 | |
ce4c2535 AB |
1097 | if (tv[0].tv_nsec < 0 || tv[0].tv_nsec >= 1000000000 || |
1098 | tv[1].tv_nsec < 0 || tv[1].tv_nsec >= 1000000000) | |
1c710c89 | 1099 | return -EINVAL; |
1da177e4 LT |
1100 | } |
1101 | ||
1c710c89 | 1102 | return do_utimes(AT_FDCWD, filename, tvs ? tv : NULL, 0); |
1da177e4 LT |
1103 | } |
1104 | ||
e5d9a90c IK |
1105 | SYSCALL_DEFINE5(osf_select, int, n, fd_set __user *, inp, fd_set __user *, outp, |
1106 | fd_set __user *, exp, struct timeval32 __user *, tvp) | |
1da177e4 | 1107 | { |
ce4c2535 | 1108 | struct timespec64 end_time, *to = NULL; |
1da177e4 | 1109 | if (tvp) { |
ce4c2535 | 1110 | struct timespec64 tv; |
14e2acd8 AV |
1111 | to = &end_time; |
1112 | ||
1cc6c463 | 1113 | if (get_tv32(&tv, tvp)) |
a2dcb44c | 1114 | return -EFAULT; |
1da177e4 | 1115 | |
ce4c2535 | 1116 | if (tv.tv_sec < 0 || tv.tv_nsec < 0) |
a2dcb44c | 1117 | return -EINVAL; |
1da177e4 | 1118 | |
ce4c2535 | 1119 | if (poll_select_set_timeout(to, tv.tv_sec, tv.tv_nsec)) |
14e2acd8 AV |
1120 | return -EINVAL; |
1121 | ||
1da177e4 LT |
1122 | } |
1123 | ||
1da177e4 | 1124 | /* OSF does not copy back the remaining time. */ |
14e2acd8 | 1125 | return core_sys_select(n, inp, outp, exp, to); |
1da177e4 LT |
1126 | } |
1127 | ||
1128 | struct rusage32 { | |
1129 | struct timeval32 ru_utime; /* user time used */ | |
1130 | struct timeval32 ru_stime; /* system time used */ | |
1131 | long ru_maxrss; /* maximum resident set size */ | |
1132 | long ru_ixrss; /* integral shared memory size */ | |
1133 | long ru_idrss; /* integral unshared data size */ | |
1134 | long ru_isrss; /* integral unshared stack size */ | |
1135 | long ru_minflt; /* page reclaims */ | |
1136 | long ru_majflt; /* page faults */ | |
1137 | long ru_nswap; /* swaps */ | |
1138 | long ru_inblock; /* block input operations */ | |
1139 | long ru_oublock; /* block output operations */ | |
1140 | long ru_msgsnd; /* messages sent */ | |
1141 | long ru_msgrcv; /* messages received */ | |
1142 | long ru_nsignals; /* signals received */ | |
1143 | long ru_nvcsw; /* voluntary context switches */ | |
1144 | long ru_nivcsw; /* involuntary " */ | |
1145 | }; | |
1146 | ||
e5d9a90c | 1147 | SYSCALL_DEFINE2(osf_getrusage, int, who, struct rusage32 __user *, ru) |
1da177e4 LT |
1148 | { |
1149 | struct rusage32 r; | |
dc9b77b5 | 1150 | u64 utime, stime; |
2019e8a3 | 1151 | unsigned long utime_jiffies, stime_jiffies; |
1da177e4 LT |
1152 | |
1153 | if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN) | |
1154 | return -EINVAL; | |
1155 | ||
1156 | memset(&r, 0, sizeof(r)); | |
1157 | switch (who) { | |
1158 | case RUSAGE_SELF: | |
dc9b77b5 FW |
1159 | task_cputime(current, &utime, &stime); |
1160 | utime_jiffies = nsecs_to_jiffies(utime); | |
1161 | stime_jiffies = nsecs_to_jiffies(stime); | |
2019e8a3 FW |
1162 | jiffies_to_timeval32(utime_jiffies, &r.ru_utime); |
1163 | jiffies_to_timeval32(stime_jiffies, &r.ru_stime); | |
1da177e4 LT |
1164 | r.ru_minflt = current->min_flt; |
1165 | r.ru_majflt = current->maj_flt; | |
1166 | break; | |
1167 | case RUSAGE_CHILDREN: | |
5613fda9 FW |
1168 | utime_jiffies = nsecs_to_jiffies(current->signal->cutime); |
1169 | stime_jiffies = nsecs_to_jiffies(current->signal->cstime); | |
2019e8a3 FW |
1170 | jiffies_to_timeval32(utime_jiffies, &r.ru_utime); |
1171 | jiffies_to_timeval32(stime_jiffies, &r.ru_stime); | |
1da177e4 LT |
1172 | r.ru_minflt = current->signal->cmin_flt; |
1173 | r.ru_majflt = current->signal->cmaj_flt; | |
1174 | break; | |
1175 | } | |
1176 | ||
1177 | return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0; | |
1178 | } | |
1179 | ||
e5d9a90c IK |
1180 | SYSCALL_DEFINE4(osf_wait4, pid_t, pid, int __user *, ustatus, int, options, |
1181 | struct rusage32 __user *, ur) | |
1da177e4 | 1182 | { |
21c5977a | 1183 | unsigned int status = 0; |
92ebce5a AV |
1184 | struct rusage r; |
1185 | long err = kernel_wait4(pid, &status, options, &r); | |
1186 | if (err <= 0) | |
1187 | return err; | |
1188 | if (put_user(status, ustatus)) | |
1189 | return -EFAULT; | |
1da177e4 | 1190 | if (!ur) |
92ebce5a | 1191 | return err; |
ce4c2535 | 1192 | if (put_tv_to_tv32(&ur->ru_utime, &r.ru_utime)) |
1da177e4 | 1193 | return -EFAULT; |
ce4c2535 | 1194 | if (put_tv_to_tv32(&ur->ru_stime, &r.ru_stime)) |
92ebce5a AV |
1195 | return -EFAULT; |
1196 | if (copy_to_user(&ur->ru_maxrss, &r.ru_maxrss, | |
1197 | sizeof(struct rusage32) - offsetof(struct rusage32, ru_maxrss))) | |
1198 | return -EFAULT; | |
1199 | return err; | |
1da177e4 LT |
1200 | } |
1201 | ||
1202 | /* | |
1203 | * I don't know what the parameters are: the first one | |
1204 | * seems to be a timeval pointer, and I suspect the second | |
1205 | * one is the time remaining.. Ho humm.. No documentation. | |
1206 | */ | |
e5d9a90c IK |
1207 | SYSCALL_DEFINE2(osf_usleep_thread, struct timeval32 __user *, sleep, |
1208 | struct timeval32 __user *, remain) | |
1da177e4 | 1209 | { |
ce4c2535 | 1210 | struct timespec64 tmp; |
1da177e4 LT |
1211 | unsigned long ticks; |
1212 | ||
1213 | if (get_tv32(&tmp, sleep)) | |
1214 | goto fault; | |
1215 | ||
ce4c2535 | 1216 | ticks = timespec64_to_jiffies(&tmp); |
1da177e4 | 1217 | |
20c6abd1 | 1218 | ticks = schedule_timeout_interruptible(ticks); |
1da177e4 LT |
1219 | |
1220 | if (remain) { | |
ce4c2535 | 1221 | jiffies_to_timespec64(ticks, &tmp); |
1da177e4 LT |
1222 | if (put_tv32(remain, &tmp)) |
1223 | goto fault; | |
1224 | } | |
1225 | ||
1226 | return 0; | |
1227 | fault: | |
1228 | return -EFAULT; | |
1229 | } | |
1230 | ||
1231 | ||
1232 | struct timex32 { | |
1233 | unsigned int modes; /* mode selector */ | |
1234 | long offset; /* time offset (usec) */ | |
1235 | long freq; /* frequency offset (scaled ppm) */ | |
1236 | long maxerror; /* maximum error (usec) */ | |
1237 | long esterror; /* estimated error (usec) */ | |
1238 | int status; /* clock command/status */ | |
1239 | long constant; /* pll time constant */ | |
1240 | long precision; /* clock precision (usec) (read only) */ | |
1241 | long tolerance; /* clock frequency tolerance (ppm) | |
1242 | * (read only) | |
1243 | */ | |
1244 | struct timeval32 time; /* (read only) */ | |
1245 | long tick; /* (modified) usecs between clock ticks */ | |
1246 | ||
1247 | long ppsfreq; /* pps frequency (scaled ppm) (ro) */ | |
1248 | long jitter; /* pps jitter (us) (ro) */ | |
1249 | int shift; /* interval duration (s) (shift) (ro) */ | |
1250 | long stabil; /* pps stability (scaled ppm) (ro) */ | |
1251 | long jitcnt; /* jitter limit exceeded (ro) */ | |
1252 | long calcnt; /* calibration intervals (ro) */ | |
1253 | long errcnt; /* calibration errors (ro) */ | |
1254 | long stbcnt; /* stability limit exceeded (ro) */ | |
1255 | ||
1256 | int :32; int :32; int :32; int :32; | |
1257 | int :32; int :32; int :32; int :32; | |
1258 | int :32; int :32; int :32; int :32; | |
1259 | }; | |
1260 | ||
e5d9a90c | 1261 | SYSCALL_DEFINE1(old_adjtimex, struct timex32 __user *, txc_p) |
1da177e4 LT |
1262 | { |
1263 | struct timex txc; | |
1264 | int ret; | |
1265 | ||
1266 | /* copy relevant bits of struct timex. */ | |
1267 | if (copy_from_user(&txc, txc_p, offsetof(struct timex32, time)) || | |
1268 | copy_from_user(&txc.tick, &txc_p->tick, sizeof(struct timex32) - | |
2b5efc08 | 1269 | offsetof(struct timex32, tick))) |
1da177e4 LT |
1270 | return -EFAULT; |
1271 | ||
1272 | ret = do_adjtimex(&txc); | |
1273 | if (ret < 0) | |
1274 | return ret; | |
1275 | ||
1276 | /* copy back to timex32 */ | |
1277 | if (copy_to_user(txc_p, &txc, offsetof(struct timex32, time)) || | |
1278 | (copy_to_user(&txc_p->tick, &txc.tick, sizeof(struct timex32) - | |
1279 | offsetof(struct timex32, tick))) || | |
ce4c2535 | 1280 | (put_tv_to_tv32(&txc_p->time, &txc.time))) |
1da177e4 LT |
1281 | return -EFAULT; |
1282 | ||
1283 | return ret; | |
1284 | } | |
1285 | ||
1286 | /* Get an address range which is currently unmapped. Similar to the | |
1287 | generic version except that we know how to honor ADDR_LIMIT_32BIT. */ | |
1288 | ||
1289 | static unsigned long | |
1290 | arch_get_unmapped_area_1(unsigned long addr, unsigned long len, | |
1291 | unsigned long limit) | |
1292 | { | |
6d1c7cca ML |
1293 | struct vm_unmapped_area_info info; |
1294 | ||
1295 | info.flags = 0; | |
1296 | info.length = len; | |
1297 | info.low_limit = addr; | |
1298 | info.high_limit = limit; | |
1299 | info.align_mask = 0; | |
1300 | info.align_offset = 0; | |
1301 | return vm_unmapped_area(&info); | |
1da177e4 LT |
1302 | } |
1303 | ||
1304 | unsigned long | |
1305 | arch_get_unmapped_area(struct file *filp, unsigned long addr, | |
1306 | unsigned long len, unsigned long pgoff, | |
1307 | unsigned long flags) | |
1308 | { | |
1309 | unsigned long limit; | |
1310 | ||
1311 | /* "32 bit" actually means 31 bit, since pointers sign extend. */ | |
1312 | if (current->personality & ADDR_LIMIT_32BIT) | |
1313 | limit = 0x80000000; | |
1314 | else | |
1315 | limit = TASK_SIZE; | |
1316 | ||
1317 | if (len > limit) | |
1318 | return -ENOMEM; | |
1319 | ||
4b87b3b2 BH |
1320 | if (flags & MAP_FIXED) |
1321 | return addr; | |
1322 | ||
1da177e4 LT |
1323 | /* First, see if the given suggestion fits. |
1324 | ||
1325 | The OSF/1 loader (/sbin/loader) relies on us returning an | |
1326 | address larger than the requested if one exists, which is | |
1327 | a terribly broken way to program. | |
1328 | ||
1329 | That said, I can see the use in being able to suggest not | |
1330 | merely specific addresses, but regions of memory -- perhaps | |
1331 | this feature should be incorporated into all ports? */ | |
1332 | ||
1333 | if (addr) { | |
1334 | addr = arch_get_unmapped_area_1 (PAGE_ALIGN(addr), len, limit); | |
1335 | if (addr != (unsigned long) -ENOMEM) | |
1336 | return addr; | |
1337 | } | |
1338 | ||
1339 | /* Next, try allocating at TASK_UNMAPPED_BASE. */ | |
1340 | addr = arch_get_unmapped_area_1 (PAGE_ALIGN(TASK_UNMAPPED_BASE), | |
1341 | len, limit); | |
1342 | if (addr != (unsigned long) -ENOMEM) | |
1343 | return addr; | |
1344 | ||
1345 | /* Finally, try allocating in low memory. */ | |
1346 | addr = arch_get_unmapped_area_1 (PAGE_SIZE, len, limit); | |
1347 | ||
1348 | return addr; | |
1349 | } | |
1350 | ||
1351 | #ifdef CONFIG_OSF4_COMPAT | |
1352 | ||
1353 | /* Clear top 32 bits of iov_len in the user's buffer for | |
1354 | compatibility with old versions of OSF/1 where iov_len | |
1355 | was defined as int. */ | |
1356 | static int | |
1357 | osf_fix_iov_len(const struct iovec __user *iov, unsigned long count) | |
1358 | { | |
1359 | unsigned long i; | |
1360 | ||
1361 | for (i = 0 ; i < count ; i++) { | |
1362 | int __user *iov_len_high = (int __user *)&iov[i].iov_len + 1; | |
1363 | ||
1364 | if (put_user(0, iov_len_high)) | |
1365 | return -EFAULT; | |
1366 | } | |
1367 | return 0; | |
1368 | } | |
1369 | ||
e5d9a90c IK |
1370 | SYSCALL_DEFINE3(osf_readv, unsigned long, fd, |
1371 | const struct iovec __user *, vector, unsigned long, count) | |
1da177e4 LT |
1372 | { |
1373 | if (unlikely(personality(current->personality) == PER_OSF4)) | |
1374 | if (osf_fix_iov_len(vector, count)) | |
1375 | return -EFAULT; | |
1376 | return sys_readv(fd, vector, count); | |
1377 | } | |
1378 | ||
e5d9a90c IK |
1379 | SYSCALL_DEFINE3(osf_writev, unsigned long, fd, |
1380 | const struct iovec __user *, vector, unsigned long, count) | |
1da177e4 LT |
1381 | { |
1382 | if (unlikely(personality(current->personality) == PER_OSF4)) | |
1383 | if (osf_fix_iov_len(vector, count)) | |
1384 | return -EFAULT; | |
1385 | return sys_writev(fd, vector, count); | |
1386 | } | |
1387 | ||
1388 | #endif | |
be53db6e AV |
1389 | |
1390 | SYSCALL_DEFINE2(osf_getpriority, int, which, int, who) | |
1391 | { | |
1392 | int prio = sys_getpriority(which, who); | |
1393 | if (prio >= 0) { | |
1394 | /* Return value is the unbiased priority, i.e. 20 - prio. | |
1395 | This does result in negative return values, so signal | |
1396 | no error */ | |
1397 | force_successful_syscall_return(); | |
1398 | prio = 20 - prio; | |
1399 | } | |
1400 | return prio; | |
1401 | } | |
1402 | ||
1403 | SYSCALL_DEFINE0(getxuid) | |
1404 | { | |
1405 | current_pt_regs()->r20 = sys_geteuid(); | |
1406 | return sys_getuid(); | |
1407 | } | |
1408 | ||
1409 | SYSCALL_DEFINE0(getxgid) | |
1410 | { | |
1411 | current_pt_regs()->r20 = sys_getegid(); | |
1412 | return sys_getgid(); | |
1413 | } | |
1414 | ||
1415 | SYSCALL_DEFINE0(getxpid) | |
1416 | { | |
1417 | current_pt_regs()->r20 = sys_getppid(); | |
1418 | return sys_getpid(); | |
1419 | } | |
1420 | ||
1421 | SYSCALL_DEFINE0(alpha_pipe) | |
1422 | { | |
1423 | int fd[2]; | |
1424 | int res = do_pipe_flags(fd, 0); | |
1425 | if (!res) { | |
1426 | /* The return values are in $0 and $20. */ | |
1427 | current_pt_regs()->r20 = fd[1]; | |
1428 | res = fd[0]; | |
1429 | } | |
1430 | return res; | |
1431 | } | |
1432 | ||
1433 | SYSCALL_DEFINE1(sethae, unsigned long, val) | |
1434 | { | |
1435 | current_pt_regs()->hae = val; | |
1436 | return 0; | |
1437 | } |