-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgivegroup
executable file
·440 lines (403 loc) · 14.4 KB
/
givegroup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
#!/bin/bash -i
# Give is a command to share files with other users. It requires a spool area.
#
# Administrative variables: userlimit per give and permissions group blacklist
# Need grouplimit? Will parsing the groups ever be too time consuming compared to the gives themselves?
userlimit=100
blacklist=("staff" "usg")
# Clean and unset vars. We now also use -i above.
giver=""
user=""
userlist=()
grouplist=()
tempuserlist=()
emailmessage=""
messagebody=""
SUBJECT=""
EMAIL=""
tmpdir=""
parentdir=""
dir2tar=""
current_dir=""
PATH=""
LD_LIBRARY_PATH=""
unset IFS
my_date=`/bin/date +%s`
quietflag="false"
messageflag="false"
batchflag="no"
# Implementation Definitions
#SPOOLAREA=/global/scratch2/gt
SPOOLAREA=/project/projectdirs/gt
# Get Giver's Name
giver=`/usr/bin/whoami`
# Get Hostname
myhost=`/usr/common/usg/bin/nersc_host`
#echo $myhost
if [ "$myhost" == "genepool" ]; then
myreadlink="/bin/readlink"
mylogger="/usr/bin/logger"
mymail="/usr/bin/mail"
else
myreadlink="/usr/bin/readlink"
mylogger="/bin/logger"
mymail="/bin/mail"
fi
# Make sure scratch is available and giver has directory
if [ ! -d "$SPOOLAREA/$giver" ]; then
echo "$giver has no mounted give area"
exit 1
fi
# Catch odd directories
current_dir=`/bin/pwd`
while getopts ":u:g:m:bq" opt; do
case $opt in
u)
userlist+=("$OPTARG")
;;
g)
grouplist+=("$OPTARG")
;;
m)
messageflag="true"
emailmessage="$OPTARG"
;;
b)
batchflag="yes"
;;
q)
quietflag="true"
;;
\?)
echo ""
echo "Usage, simple: give -u <username> -g <groupname> <files>"
echo " -u or -g is a required option"
echo " -u: Give <files> to a user."
echo " -g: Give <files> to a permission group. Cannot be used on compute nodes."
echo " Both -u and -g can be used multiple times to give the <files> to up to a combined total of $userlimit users."
echo ""
echo "Usage, verbose: give {-q -b -m \"<message>\"} -u <username> -g <groupname> <files>"
echo " -q, -m and -b are optional flags"
echo ""
echo " -q: Quiet mode. Will not send an email to the recipient. Cannot be used with -m."
echo " -m: Message. Will add a message to the give email. Use '\n' to start a new line. Cannot be used with -q."
echo " -b: Batch mode. Automatically appends time/date stamp to files with the same name as any previous, unretrieved give."
echo " Without -b: Will query overwrite or abort."
echo ""
exit 1
;;
:)
echo "Option -$OPTARG requires an argument."
exit 1
;;
esac
done
# Parse the permission group lists and add them to the userlist.
# Turn off globbing for this. List contains a *.
set -f
for groupid in "${grouplist[@]}"
do
for id in "${blacklist[@]}"
do
if [ "$groupid" == "$id" ]
then
echo " Cannot give to group \"$groupid\"."
exit 1
fi
done
# Remove whitespaces. Do not allow a blank groupid.
groupid=$(echo $groupid | /usr/bin/sed s/\s//g)
getgroup=$(/usr/bin/getent group $groupid)
if [ "$getgroup" == "" ] || [ "$groupid" == "" ]
then
echo " Group $groupid is invalid."
exit 1
fi
parse=($(echo $getgroup | /usr/bin/tr ":" "\n"))
nameparse=($(echo ${parse[${#parse[@]}-1]} | /usr/bin/tr "," "\n"))
for name in "${nameparse[@]}"
do
userlist+=("$name")
done
done
set +f
# Check if userlist is empty
if [ ${#userlist[@]} -eq 0 ]
then
echo ""
echo "Usage, simple: give -u <username> -g <groupname> <files>"
echo " -u or -g is a required option"
echo " -u: Give <files> to a user."
echo " -g: Give <files> to a permission group. Cannot be used on compute nodes."
echo " Both -u and -g can be used multiple times to give the <files> to up to a combined total of $userlimit users."
echo ""
echo "Usage, verbose: give {-q -b -m \"<message>\"} -u <username> -g <groupname> <files>"
echo " -q, -m and -b are optional flags"
echo ""
echo " -q: Quiet mode. Will not send an email to the recipient. Cannot be used with -m."
echo " -m: Message. Will add a message to the give email. Use '\n' to start a new line. Cannot be used with -q."
echo " -b: Batch mode. Automatically appends time/date stamp to files with the same name as any previous, unretrieved give."
echo " Without -b: Will query overwrite or abort."
echo ""
exit 1
fi
# Check for both message and quiet flag.
# Obviously won't do what the user thinks, so exit.
if [ "$quietflag" == "true" ] && [ "$messageflag" == "true" ]; then
echo ""
echo " Cannot send a message in quiet mode."
echo " Please choose one of -q and -m and try again."
echo ""
exit 1
fi
# Check userlist for valid users & unique names
# Check For Valid Users
for user in "${userlist[@]}"
do
temp=`/usr/bin/id -u "$user" 2>&1`
if [ $? -ne 0 ] || [ "$user" == "$temp" ] ; then
echo " username "$user" does not exist. "$user" will be ignored."
# exit 1
else
tempuserlist+=("$user")
fi
done
# If tempuserlist is empty, all usernames were invalid.
if [ ${#tempuserlist[@]} -eq 0 ]
then
echo ""
echo " No valid usernames given."
echo ""
exit 1
fi
# Identify unique list of users. (Primarily for group/user overlaps.)
# Save unique list back to userList
userlist=($(echo ${tempuserlist[@]} | /usr/bin/sed "s/\s/\n/g" | /usr/bin/sort | /usr/bin/uniq ))
# Enact the user limit
if [ ${#userlist[@]} -gt $userlimit ]
then
echo ""
echo " Number of users per give command is limited to $userlimit."
echo " Currently attempting to give to ${#userlist[@]} users."
echo ""
exit 1
fi
#Output check for userlist testing
#echo " -------- "
#for user in "${userlist[@]}"
#do
# echo $user
#done
#echo " -------- "
#exit 1
shift $(( OPTIND-1 ))
if [ -n "$1" ]
then
# Make sure the giveandtake directory is created
# and set perms on giver/receiver gt directory here.
for user in "${userlist[@]}"
do
/bin/mkdir -p "$SPOOLAREA/$giver/$user"
/usr/bin/setfacl -R -d -m u:$user:rwx,g::---,m::rwx "$SPOOLAREA/$giver/$user"
/usr/bin/setfacl -R -m u:$user:rwx,g::---,m::rwx "$SPOOLAREA/$giver/$user"
for var in "$@"
do
# Check Size and Number Limitation??
# Not implemented currently. Doing du on a directory
# takes time...
# Check sanity of $var
if [ -d "$var" ]; then
echo ""
elif [ -a "$var" ]; then
echo ""
else
echo "$var does not exist"
exit 1
fi
my_var="$var"
if [ "$myhost" == "genepool" ]; then
my_short_var=`/usr/bin/basename "$var"`
else
my_short_var=`/bin/basename "$var"`
fi
# Copy file over. Create .tar archive if directory.
# Below ${var%/} deletes a trailing slash from $var
# ${my_var##*/} deletes longest match of "*/" from front $var (i.e. deletes the path)
# Check, Is this a directory?
if [ -d "$var" ]; then
# Create .tar from directory
my_var=${var%/}.tar
my_var=${my_var##*/}
tmpdir=${var%/}
parentdir=`/usr/bin/dirname "$tmpdir"`
dir2tar=${tmpdir##*/}
echo "Creating tar archive from directory $var"
cd "$parentdir"
if [ -a "$SPOOLAREA/$giver/$user/$my_var" ]
then
if [ "$batchflag" == "no" ]
then
echo "File $my_var already exists at destination. Overwrite?"
select yn in "Yes" "No"; do
case $yn in
Yes )
/bin/tar -cvf "$SPOOLAREA/$giver/$user/$my_var" "$dir2tar"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$my_var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$my_var'`"
echo "Gave $my_var."
else
echo "Failed to give $my_var. Removing any incomplete files."
# Remove incomplete give
/bin/rm "$SPOOLAREA/$giver/$user/$my_var"
fi
break;;
No ) echo " " ; break;;
esac
done
else
my_var="${my_date}_${my_var}"
/bin/tar -cvf "$SPOOLAREA/$giver/$user/$my_var" "$dir2tar"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$my_var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$my_var'`"
echo "Gave $my_var."
else
echo "Failed to give $my_var. Removing any incomplete files."
# Remove incomplete give
/bin/rm "$SPOOLAREA/$giver/$user/$my_var"
fi
fi
else
/bin/tar -cvf "$SPOOLAREA/$giver/$user/$my_var" "$dir2tar"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$my_var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$my_var'`"
echo "Gave $my_var."
else
echo "Failed to give $my_var. Removing any incomplete files."
# Remove incomplete give
/bin/rm "$SPOOLAREA/$giver/$user/$my_var"
fi
fi
cd "$current_dir"
echo " "
# This is a file not a directory
else
if [ -a "$SPOOLAREA/$giver/$user/$my_short_var" ]
then
if [ "$batchflag" == "no" ]
then
echo "File $var already exists at destination. Overwrite?"
select yn in "Yes" "No"; do
case $yn in
Yes )
/usr/bin/rsync --progress --log-format="Giving $my_short_var" "$var" "$SPOOLAREA/$giver/$user"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_short_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_short_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_short_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$var'`"
echo "Gave $var"
else
echo "Failed to give $var. Removing incomplete file."
# Remove incomplete give
rm "$SPOOLAREA/$giver/$user/$my_short_var"
fi
echo " "
break;;
No ) echo " " ; break;;
esac
done
else
my_short_var="${my_date}_${my_short_var}"
/usr/bin/rsync --progress --log-format="Giving $my_short_var" "$var" "$SPOOLAREA/$giver/$user/$my_short_var"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_short_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_short_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_short_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$var'`"
echo "Gave $var"
else
echo "Failed to give $var. Removing incomplete file."
# Remove incomplete give
rm "$SPOOLAREA/$giver/$user/$my_short_var"
fi
echo " "
fi
else
echo "About to give $var"
echo /usr/bin/rsync --progress --log-format="Giving $my_short_var" "$var" "$SPOOLAREA/$giver/$user"
/usr/bin/rsync --progress --log-format="Giving $my_short_var" "$var" "$SPOOLAREA/$giver/$user"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_short_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_short_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_short_var"
echo "Gave $var"
echo "`/bin/date` - gave $user `$myreadlink -f '$var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `/$myreadlink -f '$var'`"
else
echo "Failed to give $var. Removing incomplete file."
# Remove incomplete give
rm "$SPOOLAREA/$giver/$user/$my_short_var"
fi
echo " "
fi
fi
done
done
# Email user if not in quiet mode
if [ "$quietflag" == "false" ]; then
for user in "${userlist[@]}"
do
if [ -z "$messagebody" ]
then
echo "No files given"
else
messagebody="Shared Files: $messagebody"
messagebody="$messagebody \n\n Retrieve individual files using the take command and providing $giver as the username (-u) argument."
# If user gave message, attach to end of email after instructions for take command.
if [ "$messageflag" == "true" ]; then
messagebody="$emailmessage \n\n $messagebody"
fi
# For security we no longer suggests users cut and paste from email
#messagebody="$messagebody \n\n % take -u $giver <filename>"
#messagebody="$messagebody \n\n Retrieve all files given by $giver using:"
#messagebody="$messagebody \n\n % take -u $giver -a"
# Email user
# EMAIL subject
SUBJECT="$giver has given you a file at NERSC."
# Email To ?
EMAIL="[email protected]"
# Email From ?
FROM="[email protected]"
# send an email using /bin/mail
if [ "$myhost" == "datatran" ]; then
echo -e "$messagebody" | $mymail -r "$FROM" -s "$SUBJECT" "$EMAIL"
else
echo -e "$messagebody" | $mymail -s "$SUBJECT" "$EMAIL" -- -f "$FROM"
fi
fi
done
fi
else
echo "No file arguments given."
fi
exit 0