aboutsummaryrefslogtreecommitdiffstats
path: root/functions
blob: d0b119d13205a86053fd68c9be3112c0ece7a113 (plain)
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
#!/bin/sh

# To the extent possible under law, the author(s) have dedicated all
# copyright and related and neighboring rights to this software to the
# public domain worldwide.
# This software is distributed without any warranty.

# You should have received a copy of the CC0 Public Domain Dedication
# along with this software.
# If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.

. /etc/repoctl.conf

function isingroup()
{
    local grp="$1"
    for group in `groups`
    do if [ "$grp" = "$group" ]
    then 
	return 0
    fi
    done
    return 1
}

function inlist()
{
    local k="$1"
    local list="$2"
    for e in $list
    do
	if [ a"$k" = a"$e" ]
	then
	    return 0
	fi
    done
    return 1
}

function get_media_path()
{
    local distrorelease="$1"; shift
    local section="$1"; shift
    local sectionrepo="$1"; shift
    local arch="$1"; shift
    echo "$distribdir/$distrorelease/$arch/media/$section/$sectionrepo"
}

function get_media_path_debug()
{
    local distrorelease="$1"; shift
    local section="$1"; shift
    local sectionrepo="$1"; shift
    local arch="$1"; shift
    echo "$distribdir/$distrorelease/$arch/media/debug/$section/$sectionrepo"
}

function get_media_path_src()
{
    local distrorelease="$1"; shift
    local section="$1"; shift
    local sectionrepo="$1"; shift
    echo "$distribdir/$distrorelease/SRPMS/$section/$sectionrepo"
}

function set_hdlists_needupdate()
{
    local distrorelease="$1"
    local section="$2"
    local sectionrepo="$3"
    touch "$hdlistsdir/$distrorelease-$section-$sectionrepo"
}

function get_hdlists_needupdate()
{
    local distrorelease="$1"
    local section="$2"
    local sectionrepo="$3"
    test -f "$hdlistsdir/$distrorelease-$section-$sectionrepo"
}

function rm_hdlists_needupdate()
{
    local distrorelease="$1"
    local section="$2"
    local sectionrepo="$3"
    rm -f "$hdlistsdir/$distrorelease-$section-$sectionrepo"
}

function update_hdlists_if_needed()
{
    for distrorelease in $distroreleases
    do
	for section in $distrosections
	do
	    for sectionrepo in $sectionsrepos
	    do
		if get_hdlists_needupdate "$distrorelease" "$section" "$sectionrepo"
		then
		    update_hdlists "$distrorelease" "$section" "$sectionrepo"
		fi
	    done
	done
    done
}

function update_hdlist()
{
    local repository="$1"
    local fdeps="$repository/../../media_info/file-deps"
    test -f "$fdeps" && ofdeps="--file-deps $fdeps"
    $dryrun /usr/bin/genhdlist2 -v --versioned --allow-empty-media $ofdeps "$repository"
}

function update_hdlists()
{
    local distrorelease="$1"
    local section="$2"
    local sectionrepo="$3"

    check_distro_section "$distrorelease" "$section" "$sectionrepo"
    get_repo_lock "$distrorelease" "$section" "$sectionrepo"
    rm_hdlists_needupdate "$distrorelease" "$section" "$sectionrepo"
    rm -f "$hdlistsdir/$distrorelease-$section-$sectionrepo"
    for arch in $arches
    do
	update_hdlist "$distribdir/$distrorelease/$arch/media/$section/$sectionrepo"
	update_hdlist "$distribdir/$distrorelease/$arch/media/debug/$section/$sectionrepo"
    done
    update_hdlist "$distribdir/$distrorelease/SRPMS/$section/$sectionrepo"
    rm_repo_lock "$distrorelease" "$section" "$sectionrepo"
}

function get_lock()
{
    local lockdir="$1"
    local waitdir="$lockdir/wait.$$"

    if mkdir "$lockdir"
    then
	return
    else
	if ! mkdir "$waitdir"
	then
	    get_lock "$lockdir"
	    return
	fi
	inotifywait -e delete_self "$waitdir"
    fi
}

function rm_lock()
{
    local lockdir="$1"
    if rmdir "$lockdir"
    then
	return
    fi
    local l=$(ls -tr "$lockdir" | head -1)
    rmdir "$lockdir/$l"
}

function get_repo_lock()
{
    local distrorelease="$1"
    local section="$2"
    local sectionrepo="$3"
    repolock="$lockdir/$distrorelease-$section-$sectionrepo.lock"
    get_lock "$repolock"
}

function rm_repo_lock()
{
    local distrorelease="$1"
    local section="$2"
    local sectionrepo="$3"
    repolock="$lockdir/$distrorelease-$section-$sectionrepo.lock"
    rm_lock "$repolock"
}

function get_distro_lock()
{
    local distrorelease="$1"
    local distrolock="$lockdir/$distrorelease.lock"
    get_lock "$distrolock"
    for distrosection in $distrosections
    do
	for sectionrepo in $sectionsrepos
	do
	    get_repo_lock $distrorelease $distrosection $sectionrepo
	done
    done
}

function rm_distro_lock()
{
    local distrorelease="$1"
    local distrolock="$lockdir/$distrorelease.lock"
    for distrosection in $distrosections
    do
	for sectionrepo in $sectionsrepos
	do
	    rm_repo_lock $distrorelease $distrosection $sectionrepo
	done
    done
    rm_lock "$distrolock"
}

function get_mirror_lock()
{
    local mirrorlock="$lockdir/mirror.lock"
    get_lock "$mirrorlock"
    for release in $distroreleases
    do
	get_distro_lock $release
    done
}

function rm_mirror_lock()
{
    local mirrorlock="$lockdir/mirror.lock"
    for release in $distroreleases
    do
	rm_distro_lock $release
    done
    rm_lock "$mirrorlock"
}

function update_common_MD5SUM()
{
    local distrorelease="$1"
    for arch in $arches
    do
	pushd "$distribdir/$distrorelease/$arch/media/media_info"
	if [ -z "$dryrun" ]
	then
	    /usr/bin/md5sum hdlist_* synthesis.* > MD5SUM
	fi
	popd
    done
}

function update_mirror_timestamp()
{
    date +%s%n%c > "$rootdir/$timestampfile"
}

function update_mirror_sha1sum()
{
    pushd "$rootdir"
    sha1sum "$timestampfile" > "$sha1sumfile"
    for distrorelease in $distroreleases
    do
	for arch in $arches
	do
	    for file in media.cfg hdlists compssUsers.pl rpmsrate
	    do
		sha1sum "distrib/$distrorelease/$arch/media/media_info/$file" >> "$sha1sumfile"
	    done
	done
	for section in $distrosections
	do
	    for sectionrepo in $sectionsrepos
	    do
		for arch in $arches
		do
		    sha1sum "distrib/$distrorelease/$arch/media/$section/$sectionrepo/media_info/MD5SUM" >> "$sha1sumfile"
		    sha1sum "distrib/$distrorelease/$arch/media/$section/$sectionrepo/media_info/pubkey" >> "$sha1sumfile"
		    sha1sum "distrib/$distrorelease/$arch/media/debug/$section/$sectionrepo/media_info/MD5SUM" >> "$sha1sumfile"
		    sha1sum "distrib/$distrorelease/$arch/media/debug/$section/$sectionrepo/media_info/pubkey" >> "$sha1sumfile"
		done
		sha1sum "distrib/$distrorelease/SRPMS/$section/$sectionrepo/media_info/MD5SUM" >> "$sha1sumfile"
		sha1sum "distrib/$distrorelease/SRPMS/$section/$sectionrepo/media_info/pubkey" >> "$sha1sumfile"
	    done
	done
    done
    $dryrun $sign_mirror_sha1sum > "$sha1sumsigfile"
    popd
}

function mirror_repository()
{
    local distrorelease="$1"
    if ! inlist "$distrorelease" "$distroreleases"
    then
	echo "Incorrect distrorelease $distrorelease" >&2
	exit 1
    fi
    get_distro_lock "$distrorelease"
    update_common_MD5SUM "$distrorelease"
    $dryrun /usr/bin/rsync $mirror_rsync_options "$distribdir/$distrorelease/" "$finaldistribdir/$distrorelease/"
    rm_distro_lock "$distrorelease"
    get_mirror_lock
    if [ -z $dryrun ]
    then
	update_mirror_timestamp
	update_mirror_sha1sum
    fi
    for file in "$timestampfile" "$sha1sumfile" "$sha1sumsigfile"
    do
	$dryrun /usr/bin/rsync $mirror_rsync_options "$rootdir/$file" "$finalrootdir/$file"
    done
    rm_mirror_lock
}

function check_distro_section()
{
    local distrorelease="$1"
    local section="$2"
    local sectionrepo="$3"

    if ! inlist "$distrorelease" "$distroreleases"
    then
	echo "Incorrect distrorelease $distrorelease" >&2
	exit 1
    fi

    if ! inlist "$section" "$distrosections"
    then
	echo "Incorrect section $section" >&2
	exit 1
    fi

    if ! inlist "$sectionrepo" "$sectionsrepos"
    then
	echo "Incorrect repository $sectionrepo" >&2
	exit 1
    fi
}

# This function can be used to move/remove/link a package file
# To remove the file, set dst_* variables to ""
# To link the file, set src_* variables to ""
function move_pkg_file()
{
    local src_distrorelease="$1"; shift
    local src_section="$1"; shift
    local src_sectionrepo="$1"; shift

    local dst_distrorelease="$1"; shift
    local dst_section="$1"; shift
    local dst_sectionrepo="$1"; shift

    local srcfile="$1"; shift
    local destdir="$1"; shift
    local output="$1"; shift

    if [ -n "$dst_distrorelease$dst_section$dst_sectionrepo" ]
    then
	local bn=$(basename "$srcfile")
	get_repo_lock "$dst_distrorelease" "$dst_section" "$dst_sectionrepo"
	set_hdlists_needupdate "$dst_distrorelease" "$dst_section" "$dst_sectionrepo"
	$dryrun ln -v "$srcfile" "$destdir/$bn" >> "$output"
	rm_repo_lock "$dst_distrorelease" "$dst_section" "$dst_sectionrepo"
    fi
    if [ -n "$src_distrorelease$src_section$src_sectionrepo" ]
    then
	get_repo_lock "$src_distrorelease" "$src_section" "$src_sectionrepo"
	set_hdlists_needupdate "$src_distrorelease" "$src_section" "$src_sectionrepo"
	$dryrun rm -f -v "$srcfile" >> "$output"
	rm_repo_lock "$src_distrorelease" "$src_section" "$src_sectionrepo"
    fi
    if [ -z "$dst_distrorelease$dst_section$dst_sectionrepo$src_distrorelease$src_section$src_sectionrepo" ]
    then
        echo "$srcfile" >> "$output"
    fi
}

# This function can be used to move/remove/link package files
# To remove the files, set dst_* variables to ""
# To link the files, set src_* variables to ""
function move_pkg_files()
{
    local src_distrorelease="$1"; shift
    local src_section="$1"; shift
    local src_sectionrepo="$1"; shift

    local dst_distrorelease="$1"; shift
    local dst_section="$1"; shift
    local dst_sectionrepo="$1"; shift

    local srcdir="$1"; shift
    local destdir="$1"; shift
    local srcpkg="$1"; shift
    local output="$1"; shift

    for file in "$srcdir/"*.rpm
    do
        local fname=$(rpm -qp --qf '%{SOURCERPM}' "$file")
        if [ a"$fname" = a"$srcpkg" ]
        then
	    move_pkg_file \
		"$src_distrorelease" "$src_section" "$src_sectionrepo" \
		"$dst_distrorelease" "$dst_section" "$dst_sectionrepo" \
		"$file" "$destdir" "$output"
        fi
    done
}

function find_src_pkg()
{
    local distrorelease="$1"
    local section="$2"
    local sectionrepo="$3"
    local pkgname="$4"

    check_distro_section "$distrorelease" "$section" "$sectionrepo"
    srcdir=$(get_media_path_src "$distrorelease" "$section" "$sectionrepo")
    for file in "$srcdir/"*.rpm
    do
	local fname=$(rpm -qp --qf '%{NAME}' "$file")
	if [ a"$fname" = a"$pkgname" ]
	then
	    basename "$file"
	    return 0
	fi
    done
}

# This function can be used to move or remove a package
# To remove a package, set dst_* variables to ""
function move_pkg()
{
    local src_distrorelease="$1"
    local src_section="$2"
    local src_sectionrepo="$3"
    local dst_distrorelease="$4"
    local dst_section="$5"
    local dst_sectionrepo="$6"
    local srcname="$7"
    local output="$8"

    check_distro_section "$src_distrorelease" "$src_section" "$src_sectionrepo"
    [ -z "$dst_distrorelease$dst_section$dst_sectionrepo" ] \
	|| check_distro_section "$dst_distrorelease" "$dst_section" "$dst_sectionrepo"

    local srcpkg=$(find_src_pkg "$src_distrorelease" "$src_section" "$src_sectionrepo" "$srcname")

    if [ -z $srcpkg ]
    then
	echo "The package $srcname could not be found in $src_distrorelease/$src_section/$src_sectionrepo repository." >&2
	exit 2
    fi

    for arch in $arches
    do
	move_pkg_files \
	    "$src_distrorelease" "$src_section" "$src_sectionrepo" \
	    "$dst_distrorelease" "$dst_section" "$dst_sectionrepo" \
	    $(get_media_path "$src_distrorelease" "$src_section" "$src_sectionrepo" "$arch") \
	    $(get_media_path "$dst_distrorelease" "$dst_section" "$dst_sectionrepo" "$arch") \
	    "$srcpkg" "$output"
	move_pkg_files \
	    "$src_distrorelease" "$src_section" "$src_sectionrepo" \
	    "$dst_distrorelease" "$dst_section" "$dst_sectionrepo" \
	    $(get_media_path_debug "$src_distrorelease" "$src_section" "$src_sectionrepo" "$arch") \
	    $(get_media_path_debug "$dst_distrorelease" "$dst_section" "$dst_sectionrepo" "$arch") \
	    "$srcpkg" "$output"
    done
    move_pkg_file \
	"$src_distrorelease" "$src_section" "$src_sectionrepo" \
	"$dst_distrorelease" "$dst_section" "$dst_sectionrepo" \
	$(get_media_path_src "$src_distrorelease" "$src_section" "$src_sectionrepo")/"$srcpkg" \
	$(get_media_path_src "$dst_distrorelease" "$dst_section" "$dst_sectionrepo") \
	"$output"
}

function ls_pkg()
{
    local src_distrorelease="$1"; shift
    local src_section="$1"; shift
    local src_sectionrepo="$1"; shift
    local srcname="$1"; shift
    local output="$1"; shift

    check_distro_section "$src_distrorelease" "$src_section" "$src_sectionrepo"

    local srcpkg=$(find_src_pkg "$src_distrorelease" "$src_section" "$src_sectionrepo" "$srcname")

    if [ -z $srcpkg ]
    then
	return 0
    fi

    for arch in $arches
    do
	move_pkg_files \
	    "" "" "" \
	    "" "" "" \
	    $(get_media_path "$src_distrorelease" "$src_section" "$src_sectionrepo" "$arch") \
	    "" \
	    "$srcpkg" "$output"
	move_pkg_files \
	    "" "" "" \
	    "" "" "" \
	    $(get_media_path_debug "$src_distrorelease" "$src_section" "$src_sectionrepo" "$arch") \
	    "" \
	    "$srcpkg" "$output"
    done
    move_pkg_file \
	"" "" "" \
	"" "" "" \
	$(get_media_path_src "$src_distrorelease" "$src_section" "$src_sectionrepo")/"$srcpkg" \
	"" \
	"$output"
}