From b19cea505cff9159f9680eb46daaf51d14fb3809 Mon Sep 17 00:00:00 2001 From: pjd Date: Mon, 27 Dec 2004 17:20:06 +0000 Subject: Rewrite piece of code which I committed some time ago that allows to show file name for 'mdconfig -l -u ' command. This allows to preserve API/ABI compatibility with version 0 (that's why I changed version number back to 0) and will allow to merge this change to RELENG_5. MFC after: 5 days --- sys/dev/md/md.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'sys/dev/md') diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index 775728f..8c35d85 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -862,10 +862,9 @@ mdcreate_vnode(struct md_s *sc, struct md_ioctl *mdio, struct thread *td) struct nameidata nd; int error, flags; - if (strlcpy(sc->file, mdio->md_file, sizeof(sc->file)) >= - sizeof(sc->file)) { - return (ENAMETOOLONG); - } + error = copyinstr(mdio->md_file, sc->file, sizeof(sc->file), NULL); + if (error != 0) + return (error); flags = FREAD|FWRITE; NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, sc->file, td); error = vn_open(&nd, &flags, 0, -1); @@ -1087,8 +1086,7 @@ mdctlioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flags, struct thread case MDIOCDETACH: if (mdio->md_version != MDIOVERSION) return (EINVAL); - if (mdio->md_file[0] != '\0' || mdio->md_mediasize != 0 || - mdio->md_options != 0) + if (mdio->md_mediasize != 0 || mdio->md_options != 0) return (EINVAL); return (mddetach(mdio->md_unit, td)); case MDIOCQUERY: @@ -1102,10 +1100,10 @@ mdctlioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flags, struct thread mdio->md_mediasize = sc->mediasize; mdio->md_sectorsize = sc->sectorsize; if (sc->type == MD_VNODE) { - if (strlcpy(mdio->md_file, sc->file, - sizeof(mdio->md_file)) >= sizeof(mdio->md_file)) { - return (ENAMETOOLONG); - } + error = copyout(sc->file, mdio->md_file, + strlen(sc->file) + 1); + if (error != 0) + return (error); } return (0); case MDIOCLIST: -- cgit v1.1