diff options
Diffstat (limited to 'net/9p/trans_fd.c')
-rw-r--r-- | net/9p/trans_fd.c | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c index 97b103b70499..4507f744f44e 100644 --- a/net/9p/trans_fd.c +++ b/net/9p/trans_fd.c | |||
@@ -1433,6 +1433,23 @@ static void p9_fd_close(struct p9_trans *trans) | |||
1433 | kfree(ts); | 1433 | kfree(ts); |
1434 | } | 1434 | } |
1435 | 1435 | ||
1436 | /* | ||
1437 | * stolen from NFS - maybe should be made a generic function? | ||
1438 | */ | ||
1439 | static inline int valid_ipaddr4(const char *buf) | ||
1440 | { | ||
1441 | int rc, count, in[4]; | ||
1442 | |||
1443 | rc = sscanf(buf, "%d.%d.%d.%d", &in[0], &in[1], &in[2], &in[3]); | ||
1444 | if (rc != 4) | ||
1445 | return -EINVAL; | ||
1446 | for (count = 0; count < 4; count++) { | ||
1447 | if (in[count] > 255) | ||
1448 | return -EINVAL; | ||
1449 | } | ||
1450 | return 0; | ||
1451 | } | ||
1452 | |||
1436 | static struct p9_trans * | 1453 | static struct p9_trans * |
1437 | p9_trans_create_tcp(const char *addr, char *args, int msize, unsigned char dotu) | 1454 | p9_trans_create_tcp(const char *addr, char *args, int msize, unsigned char dotu) |
1438 | { | 1455 | { |
@@ -1447,6 +1464,9 @@ p9_trans_create_tcp(const char *addr, char *args, int msize, unsigned char dotu) | |||
1447 | if (err < 0) | 1464 | if (err < 0) |
1448 | return ERR_PTR(err); | 1465 | return ERR_PTR(err); |
1449 | 1466 | ||
1467 | if (valid_ipaddr4(addr) < 0) | ||
1468 | return ERR_PTR(-EINVAL); | ||
1469 | |||
1450 | csocket = NULL; | 1470 | csocket = NULL; |
1451 | trans = kmalloc(sizeof(struct p9_trans), GFP_KERNEL); | 1471 | trans = kmalloc(sizeof(struct p9_trans), GFP_KERNEL); |
1452 | if (!trans) | 1472 | if (!trans) |
@@ -1625,7 +1645,7 @@ static struct p9_trans_module p9_fd_trans = { | |||
1625 | .create = p9_trans_create_fd, | 1645 | .create = p9_trans_create_fd, |
1626 | }; | 1646 | }; |
1627 | 1647 | ||
1628 | static int __init p9_trans_fd_init(void) | 1648 | int p9_trans_fd_init(void) |
1629 | { | 1649 | { |
1630 | int ret = p9_mux_global_init(); | 1650 | int ret = p9_mux_global_init(); |
1631 | if (ret) { | 1651 | if (ret) { |
@@ -1639,9 +1659,4 @@ static int __init p9_trans_fd_init(void) | |||
1639 | 1659 | ||
1640 | return 0; | 1660 | return 0; |
1641 | } | 1661 | } |
1642 | 1662 | EXPORT_SYMBOL(p9_trans_fd_init); | |
1643 | module_init(p9_trans_fd_init); | ||
1644 | |||
1645 | MODULE_AUTHOR("Latchesar Ionkov <lucho@ionkov.net>"); | ||
1646 | MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>"); | ||
1647 | MODULE_LICENSE("GPL"); | ||