Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Jul 2016 15:33:19 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r303445 - head/usr.sbin/uathload
Message-ID:  <201607281533.u6SFXJLU012672@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ed
Date: Thu Jul 28 15:33:19 2016
New Revision: 303445
URL: https://svnweb.freebsd.org/changeset/base/303445

Log:
  Call basename() and dirname() in the POSIXly correct way.
  
  Pull copies of the input string, as these functions are allowed to
  modify them. Free the copies after creating the new pathname string.

Modified:
  head/usr.sbin/uathload/uathload.c

Modified: head/usr.sbin/uathload/uathload.c
==============================================================================
--- head/usr.sbin/uathload/uathload.c	Thu Jul 28 15:19:47 2016	(r303444)
+++ head/usr.sbin/uathload/uathload.c	Thu Jul 28 15:33:19 2016	(r303445)
@@ -50,6 +50,7 @@
 #include <libgen.h>
 #include <paths.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
 #include <strings.h>
 #include <unistd.h>
@@ -84,19 +85,30 @@ extern	uint8_t _binary_ar5523_bin_end;
 static int
 getdevname(const char *devname, char *msgdev, char *datadev)
 {
-	char *bn, *dn;
+	char *bn, *bnbuf, *dn, *dnbuf;
 
-	dn = dirname(devname);
-	if (dn == NULL)
+	dnbuf = strdup(devname);
+	if (dnbuf == NULL)
 		return (-1);
-	bn = basename(devname);
-	if (bn == NULL || strncmp(bn, "ugen", 4))
+	dn = dirname(dnbuf);
+	bnbuf = strdup(devname);
+	if (bnbuf == NULL) {
+		free(dnbuf);
 		return (-1);
+	}
+	bn = basename(bnbuf);
+	if (strncmp(bn, "ugen", 4) != 0) {
+		free(dnbuf);
+		free(bnbuf);
+		return (-1);
+	}
 	bn += 4;
 
 	/* NB: pipes are hardcoded */
 	snprintf(msgdev, 256, "%s/usb/%s.1", dn, bn);
 	snprintf(datadev, 256, "%s/usb/%s.2", dn, bn);
+	free(dnbuf);
+	free(bnbuf);
 	return (0);
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607281533.u6SFXJLU012672>