aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn/sc
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2010-05-21 18:26:42 -0400
committerDavid S. Miller <davem@davemloft.net>2010-05-31 03:24:15 -0400
commit024cb8a67f3d3438322fac9d6f7b1cc578eca71c (patch)
tree23ba9dc417ae6a62aa3c9bbc2b07b0571ef28b6f /drivers/isdn/sc
parent7d88950426da812a6ab93ee1bba821f7f0ec1766 (diff)
drivers/isdn: Use memdup_user
Use memdup_user when user data is immediately copied into the allocated region. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression from,to,size,flag; position p; identifier l1,l2; @@ - to = \(kmalloc@p\|kzalloc@p\)(size,flag); + to = memdup_user(from,size); if ( - to==NULL + IS_ERR(to) || ...) { <+... when != goto l1; - -ENOMEM + PTR_ERR(to) ...+> } - if (copy_from_user(to, from, size) != 0) { - <+... when != goto l2; - -EFAULT - ...+> - } // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/sc')
-rw-r--r--drivers/isdn/sc/ioctl.c23
1 files changed, 6 insertions, 17 deletions
diff --git a/drivers/isdn/sc/ioctl.c b/drivers/isdn/sc/ioctl.c
index 1081091bbfaf..43c5dc3516e5 100644
--- a/drivers/isdn/sc/ioctl.c
+++ b/drivers/isdn/sc/ioctl.c
@@ -215,19 +215,13 @@ int sc_ioctl(int card, scs_ioctl *data)
215 pr_debug("%s: DCBIOSETSPID: ioctl received\n", 215 pr_debug("%s: DCBIOSETSPID: ioctl received\n",
216 sc_adapter[card]->devicename); 216 sc_adapter[card]->devicename);
217 217
218 spid = kmalloc(SCIOC_SPIDSIZE, GFP_KERNEL);
219 if(!spid) {
220 kfree(rcvmsg);
221 return -ENOMEM;
222 }
223
224 /* 218 /*
225 * Get the spid from user space 219 * Get the spid from user space
226 */ 220 */
227 if (copy_from_user(spid, data->dataptr, SCIOC_SPIDSIZE)) { 221 spid = memdup_user(data->dataptr, SCIOC_SPIDSIZE);
222 if (IS_ERR(spid)) {
228 kfree(rcvmsg); 223 kfree(rcvmsg);
229 kfree(spid); 224 return PTR_ERR(spid);
230 return -EFAULT;
231 } 225 }
232 226
233 pr_debug("%s: SCIOCSETSPID: setting channel %d spid to %s\n", 227 pr_debug("%s: SCIOCSETSPID: setting channel %d spid to %s\n",
@@ -296,18 +290,13 @@ int sc_ioctl(int card, scs_ioctl *data)
296 pr_debug("%s: SCIOSETDN: ioctl received\n", 290 pr_debug("%s: SCIOSETDN: ioctl received\n",
297 sc_adapter[card]->devicename); 291 sc_adapter[card]->devicename);
298 292
299 dn = kmalloc(SCIOC_DNSIZE, GFP_KERNEL);
300 if (!dn) {
301 kfree(rcvmsg);
302 return -ENOMEM;
303 }
304 /* 293 /*
305 * Get the spid from user space 294 * Get the spid from user space
306 */ 295 */
307 if (copy_from_user(dn, data->dataptr, SCIOC_DNSIZE)) { 296 dn = memdup_user(data->dataptr, SCIOC_DNSIZE);
297 if (IS_ERR(dn)) {
308 kfree(rcvmsg); 298 kfree(rcvmsg);
309 kfree(dn); 299 return PTR_ERR(dn);
310 return -EFAULT;
311 } 300 }
312 301
313 pr_debug("%s: SCIOCSETDN: setting channel %d dn to %s\n", 302 pr_debug("%s: SCIOCSETDN: setting channel %d dn to %s\n",