summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordchagin <dchagin@FreeBSD.org>2015-01-11 07:02:03 +0000
committerdchagin <dchagin@FreeBSD.org>2015-01-11 07:02:03 +0000
commit4f4ad9e7dd421d2d208fb3478dfc62a30c7bd6c2 (patch)
tree22b3b5538ebc14366ea7b0e1da71eb92aefcf4d2
parent11947f9f2cfc44c72828b69b62c16c142234d5b4 (diff)
downloadFreeBSD-src-4f4ad9e7dd421d2d208fb3478dfc62a30c7bd6c2.zip
FreeBSD-src-4f4ad9e7dd421d2d208fb3478dfc62a30c7bd6c2.tar.gz
MFC r276564, r276654:
Cast *path to silence clang -Wpointer-sign warning. Indeed, instead of hiding the kern___getcwd() bug by bogus cast in r276564, change path type to char * (pathnames are always char *). And remove bogus casts of malloc(). kern___getcwd() internally doesn't actually use or support u_char * paths, except to copy them to a normal char * path. These changes are not visible to libc as libc/gen/getcwd.c misdeclares __getcwd() as taking a plain char * path. While here remove _SYS_SYSPROTO_H_ for __getcwd() syscall as we always have sysproto.h.
-rw-r--r--sys/compat/freebsd32/syscalls.master2
-rw-r--r--sys/compat/linux/linux_getcwd.c6
-rw-r--r--sys/kern/syscalls.master2
-rw-r--r--sys/kern/vfs_cache.c10
-rw-r--r--sys/sys/syscallsubr.h2
5 files changed, 7 insertions, 15 deletions
diff --git a/sys/compat/freebsd32/syscalls.master b/sys/compat/freebsd32/syscalls.master
index ed3cc29..48c2f3e 100644
--- a/sys/compat/freebsd32/syscalls.master
+++ b/sys/compat/freebsd32/syscalls.master
@@ -583,7 +583,7 @@
323 AUE_NULL OBSOL thr_wakeup
324 AUE_MLOCKALL NOPROTO { int mlockall(int how); }
325 AUE_MUNLOCKALL NOPROTO { int munlockall(void); }
-326 AUE_GETCWD NOPROTO { int __getcwd(u_char *buf, u_int buflen); }
+326 AUE_GETCWD NOPROTO { int __getcwd(char *buf, u_int buflen); }
327 AUE_NULL NOPROTO { int sched_setparam (pid_t pid, \
const struct sched_param *param); }
diff --git a/sys/compat/linux/linux_getcwd.c b/sys/compat/linux/linux_getcwd.c
index 04f92e8..1c7080d 100644
--- a/sys/compat/linux/linux_getcwd.c
+++ b/sys/compat/linux/linux_getcwd.c
@@ -186,7 +186,7 @@ linux_getcwd_scandir(lvpp, uvpp, bpp, bufp, td)
dirbuflen = DIRBLKSIZ;
if (dirbuflen < va.va_blocksize)
dirbuflen = va.va_blocksize;
- dirbuf = (char *)malloc(dirbuflen, M_TEMP, M_WAITOK);
+ dirbuf = malloc(dirbuflen, M_TEMP, M_WAITOK);
#if 0
unionread:
@@ -413,7 +413,7 @@ out:
int
linux_getcwd(struct thread *td, struct linux_getcwd_args *args)
{
- caddr_t bp, bend, path;
+ char *bp, *bend, *path;
int error, len, lenused;
#ifdef DEBUG
@@ -428,7 +428,7 @@ linux_getcwd(struct thread *td, struct linux_getcwd_args *args)
else if (len < 2)
return ERANGE;
- path = (char *)malloc(len, M_TEMP, M_WAITOK);
+ path = malloc(len, M_TEMP, M_WAITOK);
error = kern___getcwd(td, path, UIO_SYSSPACE, len);
if (!error) {
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 15c2d12..09b9273 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -571,7 +571,7 @@
323 AUE_NULL OBSOL thr_wakeup
324 AUE_MLOCKALL STD { int mlockall(int how); }
325 AUE_MUNLOCKALL STD { int munlockall(void); }
-326 AUE_GETCWD STD { int __getcwd(u_char *buf, u_int buflen); }
+326 AUE_GETCWD STD { int __getcwd(char *buf, u_int buflen); }
327 AUE_NULL STD { int sched_setparam (pid_t pid, \
const struct sched_param *param); }
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c
index 3ba66e2..17f72a7 100644
--- a/sys/kern/vfs_cache.c
+++ b/sys/kern/vfs_cache.c
@@ -1044,14 +1044,6 @@ vfs_cache_lookup(ap)
return (error);
}
-
-#ifndef _SYS_SYSPROTO_H_
-struct __getcwd_args {
- u_char *buf;
- u_int buflen;
-};
-#endif
-
/*
* XXX All of these sysctls would probably be more productive dead.
*/
@@ -1070,7 +1062,7 @@ sys___getcwd(td, uap)
}
int
-kern___getcwd(struct thread *td, u_char *buf, enum uio_seg bufseg, u_int buflen)
+kern___getcwd(struct thread *td, char *buf, enum uio_seg bufseg, u_int buflen)
{
char *bp, *tmpbuf;
struct filedesc *fdp;
diff --git a/sys/sys/syscallsubr.h b/sys/sys/syscallsubr.h
index 6d8316d..f59bbb9 100644
--- a/sys/sys/syscallsubr.h
+++ b/sys/sys/syscallsubr.h
@@ -57,7 +57,7 @@ struct stat;
struct thr_param;
struct __wrusage;
-int kern___getcwd(struct thread *td, u_char *buf, enum uio_seg bufseg,
+int kern___getcwd(struct thread *td, char *buf, enum uio_seg bufseg,
u_int buflen);
int kern_accept(struct thread *td, int s, struct sockaddr **name,
socklen_t *namelen, struct file **fp);
OpenPOWER on IntegriCloud