aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-02-04 02:39:55 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-02-04 02:39:55 +0000
commit5870ad9672ac09e366f1bfd4086e98cd019ed8f2 (patch)
treed7657a18e022900fdc6e0df24b59af9042e84109 /util-linux
parent42823d597a9029ac497edda9102f61283630635b (diff)
downloadbusybox-w32-5870ad9672ac09e366f1bfd4086e98cd019ed8f2.tar.gz
busybox-w32-5870ad9672ac09e366f1bfd4086e98cd019ed8f2.tar.bz2
busybox-w32-5870ad9672ac09e366f1bfd4086e98cd019ed8f2.zip
mount: (try to) support cifs with IPv6
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mount.c35
1 files changed, 22 insertions, 13 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 702c0338a..567514ccb 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -687,6 +687,8 @@ get_mountport(struct sockaddr_in *server_addr,
687 static struct pmap p = {0, 0, 0, 0}; 687 static struct pmap p = {0, 0, 0, 0};
688 688
689 server_addr->sin_port = PMAPPORT; 689 server_addr->sin_port = PMAPPORT;
690/* glibc 2.4 (still) has pmap_getmaps(struct sockaddr_in *).
691 * I understand it like "IPv6 for this is not 100% ready" */
690 pmap = pmap_getmaps(server_addr); 692 pmap = pmap_getmaps(server_addr);
691 693
692 if (version > MAX_NFSPROT) 694 if (version > MAX_NFSPROT)
@@ -1396,8 +1398,9 @@ static int singlemount(struct mntent *mp, int ignore_busy)
1396 && (mp->mnt_fsname[0]=='/' || mp->mnt_fsname[0]=='\\') 1398 && (mp->mnt_fsname[0]=='/' || mp->mnt_fsname[0]=='\\')
1397 && mp->mnt_fsname[0]==mp->mnt_fsname[1] 1399 && mp->mnt_fsname[0]==mp->mnt_fsname[1]
1398 ) { 1400 ) {
1399 struct hostent *he; 1401 len_and_sockaddr *lsa;
1400 char ip[32], *s; 1402 char *ip, *dotted;
1403 char *s;
1401 1404
1402 rc = 1; 1405 rc = 1;
1403 // Replace '/' with '\' and verify that unc points to "//server/share". 1406 // Replace '/' with '\' and verify that unc points to "//server/share".
@@ -1408,29 +1411,34 @@ static int singlemount(struct mntent *mp, int ignore_busy)
1408 // get server IP 1411 // get server IP
1409 1412
1410 s = strrchr(mp->mnt_fsname, '\\'); 1413 s = strrchr(mp->mnt_fsname, '\\');
1411 if (s == mp->mnt_fsname+1) goto report_error; 1414 if (s <= mp->mnt_fsname+1) goto report_error;
1412 *s = '\0'; 1415 *s = '\0';
1413 he = gethostbyname(mp->mnt_fsname+2); 1416 lsa = host2sockaddr(mp->mnt_fsname+2, 0);
1414 *s = '\\'; 1417 *s = '\\';
1415 if (!he) goto report_error; 1418 if (!lsa) goto report_error;
1416 1419
1417 // Insert ip=... option into string flags. (NOTE: Add IPv6 support.) 1420 // insert ip=... option into string flags.
1418 1421
1419 sprintf(ip, "ip=%d.%d.%d.%d", he->h_addr[0], he->h_addr[1], 1422 dotted = xmalloc_sockaddr2dotted_noport(&lsa->sa, lsa->len);
1420 he->h_addr[2], he->h_addr[3]); 1423 ip = xasprintf("ip=%s", dotted);
1421 parse_mount_options(ip, &filteropts); 1424 parse_mount_options(ip, &filteropts);
1422 1425
1423 // compose new unc '\\server-ip\share' 1426 // compose new unc '\\server-ip\share'
1427 // (s => slash after hostname)
1424 1428
1425 mp->mnt_fsname = xasprintf("\\\\%s%s", ip+3, 1429 mp->mnt_fsname = xasprintf("\\\\%s%s", dotted, s);
1426 strchr(mp->mnt_fsname+2,'\\'));
1427 1430
1428 // lock is required 1431 // lock is required
1429 vfsflags |= MS_MANDLOCK; 1432 vfsflags |= MS_MANDLOCK;
1430 1433
1431 mp->mnt_type = (char*)"cifs"; 1434 mp->mnt_type = (char*)"cifs";
1432 rc = mount_it_now(mp, vfsflags, filteropts); 1435 rc = mount_it_now(mp, vfsflags, filteropts);
1433 if (ENABLE_FEATURE_CLEAN_UP) free(mp->mnt_fsname); 1436 if (ENABLE_FEATURE_CLEAN_UP) {
1437 free(mp->mnt_fsname);
1438 free(ip);
1439 free(dotted);
1440 free(lsa);
1441 }
1434 goto report_error; 1442 goto report_error;
1435 } 1443 }
1436 1444
@@ -1508,8 +1516,9 @@ static int singlemount(struct mntent *mp, int ignore_busy)
1508 } 1516 }
1509 } 1517 }
1510 1518
1511report_error: 1519 report_error:
1512 if (ENABLE_FEATURE_CLEAN_UP) free(filteropts); 1520 if (ENABLE_FEATURE_CLEAN_UP)
1521 free(filteropts);
1513 1522
1514 if (rc && errno == EBUSY && ignore_busy) rc = 0; 1523 if (rc && errno == EBUSY && ignore_busy) rc = 0;
1515 if (rc < 0) 1524 if (rc < 0)