[f3691ff] | 1 | #!/usr/bin/perl |
---|
| 2 | |
---|
| 3 | ############################################################################# |
---|
| 4 | # smbmounts.pl: Setup Automounter to mount via SMB for federated experiments |
---|
| 5 | # $Id: smbmount.Linux.pl,v 1.1 2008-05-18 00:09:31 faber Exp $ |
---|
| 6 | # |
---|
| 7 | |
---|
| 8 | $SHARE=shift || "USERS"; |
---|
| 9 | $ADDR=shift || `cat /usr/local/etc/emulab/bossnode`; |
---|
| 10 | $PUSER=shift || "jhickey"; |
---|
| 11 | $PNAME=shift || "emulab-ops"; |
---|
[73e0a61] | 12 | $FSTYPE=shift || 'cifs'; |
---|
[f3691ff] | 13 | $FSTAB="/etc/fstab"; |
---|
| 14 | $HOMEROOT="/users"; |
---|
| 15 | $PROJROOT="/proj"; |
---|
| 16 | |
---|
[1102368] | 17 | my $share = 0; |
---|
[2b11a1d] | 18 | |
---|
[f3691ff] | 19 | chomp $ADDR; |
---|
| 20 | |
---|
| 21 | # ADDR is probably a DNS name (and we assume so if it has letters. mount cifs |
---|
| 22 | # wants an IP address, so this hex dereferences the DNS name and converts the |
---|
| 23 | # first address into the string representation of the IP. It is, perhaps, a |
---|
| 24 | # but terse. |
---|
| 25 | if ($ADDR =~ /[a-z]/ ) { |
---|
| 26 | my @addrs = (gethostbyname($ADDR))[4]; |
---|
| 27 | $ADDR = join(".", unpack("C4", @addrs[0])) |
---|
| 28 | if @addrs; |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | |
---|
| 32 | $TMCC="/usr/local/etc/emulab/tmcc"; |
---|
| 33 | $UMOUNT="/bin/umount"; |
---|
| 34 | $MOUNT="/bin/mount"; |
---|
| 35 | $MKDIR="/bin/mkdir"; |
---|
| 36 | $CP="/bin/cp"; |
---|
| 37 | |
---|
| 38 | print "Unmounting all nfs and cifs filesystems.\n"; |
---|
| 39 | system("$UMOUNT -a -f -t nfs,cifs"); # or die("Failed to unmount NFS"); |
---|
| 40 | |
---|
| 41 | # Backup the fstab so we can run multiple times |
---|
| 42 | if (! -f "$FSTAB.bak") { |
---|
| 43 | system("$CP $FSTAB $FSTAB.bak") && die("Unable to backup $FSTAB"); |
---|
| 44 | } else { |
---|
| 45 | system("$CP $FSTAB.bak $FSTAB") && die("Unable to restore $FSTAB"); |
---|
| 46 | } |
---|
| 47 | |
---|
[c0a8738] | 48 | # open(TM, "$TMCC accounts windows |") or die("Failed to execute TMCC"); |
---|
| 49 | open(TM, "/usr/local/federation/etc/userconf")or die("Failed to open userconf"); |
---|
[f3691ff] | 50 | open(FSTAB,">>$FSTAB") or die("Cannot Open File $FSTAB"); |
---|
| 51 | |
---|
| 52 | print FSTAB "\n# SMB Configuration Generated by smbmount.pl\n"; |
---|
| 53 | |
---|
| 54 | while(<TM>) { |
---|
[c0a8738] | 55 | /ADDUSER/ && do { |
---|
| 56 | /LOGIN=(\S+)/ && do { $user = $1; }; |
---|
| 57 | /WPSWD=(\S+)/ && do { $pswd = $1; }; |
---|
| 58 | /UID=(\S+)/ && do { $uid = $1; }; |
---|
| 59 | /GID=(\S+)/ && do { $gid = $1; }; |
---|
| 60 | /HOMEDIR=(\S+)/ && do { $homedir = $1; }; |
---|
[9b3627e] | 61 | my $ids = $FSTYPE == 'smbfs' ? ",uid=$uid,gid=$gid" : ""; |
---|
[c0a8738] | 62 | |
---|
[66a8e6d] | 63 | #We should be even more careful about creating these files securely, |
---|
| 64 | #confirming ownership, etc., but this is run in an restricted |
---|
| 65 | #environment. |
---|
[c0a8738] | 66 | open(PWDFILE, ">/tmp/$user.cifs_creds") || |
---|
| 67 | warn "Can't create credentials for $user:$!\n"; |
---|
| 68 | chmod(0600, "/tmp/$user.cifs_creds") == 1 || |
---|
| 69 | warn "Credential file /tmp/$user.cifs_creds may have " . |
---|
| 70 | "bad permissions:$!\n"; |
---|
[66a8e6d] | 71 | print PWDFILE "username=$user\npassword=$pswd\n"; |
---|
| 72 | close(PWDFILE); |
---|
[c0a8738] | 73 | |
---|
| 74 | print FSTAB "//$SHARE/$user\t"; |
---|
[73e0a61] | 75 | print FSTAB "$homedir\t$FSTYPE\t"; |
---|
[9b3627e] | 76 | print FSTAB "auto,rw,credentials=/tmp/$user.cifs_creds$ids,ip=$ADDR\t0\t0\n"; |
---|
[c0a8738] | 77 | |
---|
| 78 | # |
---|
| 79 | # If we are PUSER, the user assigned to mount the project |
---|
| 80 | # directory, then we add in the mount for that. The share is |
---|
| 81 | # called proj-$PNAME where PNAME is the name of the project at |
---|
| 82 | # the mothership. We need a second map for this since we will |
---|
| 83 | # be mounting under /proj. We should really not use share in |
---|
| 84 | # federation. |
---|
| 85 | # |
---|
| 86 | |
---|
| 87 | if($user =~ m/$PUSER/i) { |
---|
| 88 | print FSTAB "//$SHARE/proj-$PNAME\t"; |
---|
[9b3627e] | 89 | print FSTAB "$PROJROOT/$PNAME\t$FSTYPE\t"; |
---|
| 90 | print FSTAB "rw,credentials=/tmp/$user.cifs_creds$ids,ip=$ADDR\t0\t0\n"; |
---|
| 91 | mkdir("/$PROJROOT/$PNAME") unless -d "/$PROJROOT/$PNAME"; |
---|
[2b11a1d] | 92 | if ( $share) { |
---|
| 93 | print FSTAB "//$SHARE/share\t"; |
---|
[73e0a61] | 94 | print FSTAB "/share\t$FSTYPE\t"; |
---|
[9b3627e] | 95 | print FSTAB "rw,credentials=/tmp/$user.cifs_creds$ids,ip=$ADDR\t0\t0\n"; |
---|
[c0a8738] | 96 | |
---|
[2b11a1d] | 97 | mkdir("/share") unless -d "/share"; |
---|
| 98 | } |
---|
[c0a8738] | 99 | } |
---|
| 100 | } |
---|
[f3691ff] | 101 | } |
---|
| 102 | |
---|
| 103 | close(FSTAB); |
---|
| 104 | |
---|
[73e0a61] | 105 | print("Mounting the $FSTYPE versions of everything\n"); |
---|
| 106 | system("$MOUNT -a -t $FSTYPE"); |
---|