From 982e80577dd08945aa2345ebe35e3f50eef9eb48 Mon Sep 17 00:00:00 2001 From: archie Date: Fri, 4 Dec 1998 22:54:57 +0000 Subject: Examine all occurrences of sprintf(), strcat(), and str[n]cpy() for possible buffer overflow problems. Replaced most sprintf()'s with snprintf(); for others cases, added terminating NUL bytes where appropriate, replaced constants like "16" with sizeof(), etc. These changes include several bug fixes, but most changes are for maintainability's sake. Any instance where it wasn't "immediately obvious" that a buffer overflow could not occur was made safer. Reviewed by: Bruce Evans Reviewed by: Matthew Dillon Reviewed by: Mike Spengler --- sys/coda/coda_vfsops.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'sys/coda/coda_vfsops.c') diff --git a/sys/coda/coda_vfsops.c b/sys/coda/coda_vfsops.c index e282911..79ca465 100644 --- a/sys/coda/coda_vfsops.c +++ b/sys/coda/coda_vfsops.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/cfs/coda_vfsops.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vfsops.c,v 1.8 1998/11/03 08:55:06 peter Exp $ + * $Id: coda_vfsops.c,v 1.9 1998/11/16 19:48:26 rvb Exp $ * */ @@ -47,6 +47,9 @@ /* * HISTORY * $Log: coda_vfsops.c,v $ + * Revision 1.9 1998/11/16 19:48:26 rvb + * A few bug fixes for Robert Watson + * * Revision 1.8 1998/11/03 08:55:06 peter * Support KLD. We register and unregister two modules. "coda" (the vfs) * via VFS_SET(), and "codadev" for the cdevsw entry. From kldstat -v: @@ -592,8 +595,8 @@ coda_nb_statfs(vfsp, sbp, p) sbp->f_files = NB_SFS_SIZ; sbp->f_ffree = NB_SFS_SIZ; bcopy((caddr_t)&(vfsp->mnt_stat.f_fsid), (caddr_t)&(sbp->f_fsid), sizeof (fsid_t)); - strcpy(sbp->f_mntonname, "/coda"); - strcpy(sbp->f_mntfromname, "CODA"); + snprintf(sbp->f_mntonname, sizeof(sbp->f_mntonname), "/coda"); + snprintf(sbp->f_mntfromname, sizeof(sbp->f_mntfromname), "CODA"); /* MARK_INT_SAT(CODA_STATFS_STATS); */ return(0); } -- cgit v1.1