1 | #!/usr/bin/perl |
---|
2 | |
---|
3 | ############################################################################# |
---|
4 | # smbmounts.pl: Setup Automounter to mount via SMB for federated experiments |
---|
5 | # $Id: smbmount.FreeBSD.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"; |
---|
12 | $FSTAB="/etc/fstab"; |
---|
13 | $HOMEROOT="/users"; |
---|
14 | $PROJROOT="/proj"; |
---|
15 | $AMDROOT="/auto"; |
---|
16 | $AMDMAP="/etc/amd.users"; |
---|
17 | $PAMDMAP="/etc/amd.proj"; |
---|
18 | |
---|
19 | chomp $ADDR; |
---|
20 | |
---|
21 | $TMCC="/usr/local/etc/emulab/tmcc"; |
---|
22 | $UMOUNT="/sbin/umount"; |
---|
23 | $MOUNT="/sbin/mount"; |
---|
24 | $MKDIR="/bin/mkdir"; |
---|
25 | $CP="/bin/cp"; |
---|
26 | $KILLALL="/usr/bin/killall"; |
---|
27 | $AMD="/usr/sbin/amd"; |
---|
28 | |
---|
29 | my $share = 0; |
---|
30 | |
---|
31 | print "Killing amd.\n"; |
---|
32 | system("$KILLALL amd"); |
---|
33 | |
---|
34 | print "Unmounting all nfs and smb filesystems.\n"; |
---|
35 | system("$UMOUNT -A -f -t nfs,smbfs"); # or die("Failed to unmount NFS"); |
---|
36 | |
---|
37 | # Backup the fstab so we can run multiple times |
---|
38 | if (! -f "$FSTAB.bak") { |
---|
39 | system("$CP $FSTAB $FSTAB.bak") && die("Unable to backup $FSTAB"); |
---|
40 | } else { |
---|
41 | system("$CP $FSTAB.bak $FSTAB") && die("Unable to restore $FSTAB"); |
---|
42 | } |
---|
43 | |
---|
44 | # open(TM, "$TMCC accounts windows |") or die("Failed to execute TMCC"); |
---|
45 | open(TM, "/usr/local/federation/etc/userconf")or die("Failed to open userconf"); |
---|
46 | open(CONFIG, ">/etc/nsmb.conf") or die("Failed to open /etc/nsmb.conf"); |
---|
47 | open(MAP, ">$AMDMAP") or die("Failed to open $AMDMAP"); |
---|
48 | open(PMAP, ">$PAMDMAP") or die("Failed to open $PAMDMAP"); |
---|
49 | open(FSTAB,">>$FSTAB") or die("Cannot Open File $FSTAB"); |
---|
50 | |
---|
51 | print FSTAB "\n# SMB Configuration Generated by smbmount.pl\n"; |
---|
52 | print MAP "# AMD Configuration Generated by smbmount.pl\n"; |
---|
53 | print CONFIG "# SMB Configuration Generated by smbmount.pl\n\n"; |
---|
54 | print CONFIG "[$SHARE]\naddr=$ADDR\n\n"; |
---|
55 | |
---|
56 | while(<TM>) { |
---|
57 | /ADDUSER/ && do { |
---|
58 | /LOGIN=(\S+)/ && do { $user = $1; }; |
---|
59 | /WPSWD=(\S+)/ && do { $pswd = $1; }; |
---|
60 | /UID=(\S+)/ && do { $uid = $1; }; |
---|
61 | /GID=(\S+)/ && do { $gid = $1; }; |
---|
62 | /HOMEDIR=(\S+)/ && do { $homedir = $1; }; |
---|
63 | |
---|
64 | $userlc = $user; |
---|
65 | # SMB demands upper case. |
---|
66 | $user =~ tr/a-z/A-Z/; |
---|
67 | my $pass = `smbutil crypt '$pswd'`; |
---|
68 | |
---|
69 | print CONFIG "[$SHARE:$user]\npassword=$pass\n"; |
---|
70 | |
---|
71 | if(! -d "$AMDROOT$homedir") { |
---|
72 | system("$MKDIR -p $AMDROOT$homedir") && |
---|
73 | die("Failed to make directory"); |
---|
74 | } |
---|
75 | |
---|
76 | print FSTAB "//$user\@$SHARE/$user\t"; |
---|
77 | print FSTAB "$AMDROOT$homedir\tsmbfs\t"; |
---|
78 | print FSTAB "noauto,rw,-N,-f744,-d755,-u$uid,-g$gid\t0\t0\n"; |
---|
79 | |
---|
80 | print MAP "\n$userlc type:=program;fs:=$AMDROOT$homedir;\\\n"; |
---|
81 | print MAP "mount:=\"$MOUNT mount $AMDROOT$homedir\";\\\n"; |
---|
82 | print MAP "unmount:=\"$UMOUNT unmount $AMDROOT$homedir\";"; |
---|
83 | |
---|
84 | # |
---|
85 | # If we are PUSER, the user assigned to mount the project directory, |
---|
86 | # then we add in the mount for that. The share is called proj-$PNAME |
---|
87 | # where PNAME is the name of the project at the mothership. We need |
---|
88 | # a second map for this since we will be mounting under /proj. |
---|
89 | |
---|
90 | if($user =~ m/$PUSER/i) { |
---|
91 | print FSTAB "//$user\@$SHARE/proj-$PNAME\t"; |
---|
92 | print FSTAB "$AMDROOT/proj\tsmbfs\t"; |
---|
93 | print FSTAB "noauto,rw,-N,-f774,-d775,-u$uid,-g$gid\t0\t0\n"; |
---|
94 | |
---|
95 | print PMAP "$PNAME type:=program;fs:=$AMDROOT/proj;\\\n"; |
---|
96 | print PMAP "mount:=\"$MOUNT mount $AMDROOT/proj\";\\\n"; |
---|
97 | print PMAP "unmount:=\"$UMOUNT unmount $AMDROOT/proj\";\n"; |
---|
98 | |
---|
99 | if(! -d "$AMDROOT/proj") { |
---|
100 | system("$MKDIR -p $AMDROOT/proj") && |
---|
101 | die("Failed to make directory"); |
---|
102 | } |
---|
103 | if ( $share) { |
---|
104 | print FSTAB "//$user\@$SHARE/share\t"; |
---|
105 | print FSTAB "$AMDROOT/share\tsmbfs\t"; |
---|
106 | print FSTAB "noauto,rw,-N,-f774,-d775,-u$uid,-g$gid\t0\t0\n"; |
---|
107 | |
---|
108 | print PMAP "$PNAME type:=program;fs:=$AMDROOT/share\\\n"; |
---|
109 | print PMAP "mount:=\"$MOUNT mount $AMDROOT/share\";\\\n"; |
---|
110 | print PMAP "unmount:=\"$UMOUNT unmount $AMDROOT/share\";\n"; |
---|
111 | |
---|
112 | if(! -d "$AMDROOT/share") { |
---|
113 | system("$MKDIR -p $AMDROOT/share") && |
---|
114 | die("Failed to make directory"); |
---|
115 | } |
---|
116 | } |
---|
117 | } |
---|
118 | } |
---|
119 | } |
---|
120 | |
---|
121 | close(CONFIG); |
---|
122 | close(FSTAB); |
---|
123 | close(MAP); |
---|
124 | close(PMAP); |
---|
125 | |
---|
126 | print "Starting the automounter: $AMD -l syslog -a $AMDROOT $HOMEROOT $AMDMAP $PROJROOT $PAMDMAP\n"; |
---|
127 | system("$AMD -l syslog -a $AMDROOT $HOMEROOT $AMDMAP $PROJROOT $PAMDMAP") && die("Unable to start amd"); |
---|