This file is indexed.

/usr/bin/debrsign is in devscripts 2.17.12ubuntu1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  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
#!/bin/bash

# This program is used to REMOTELY sign a .dsc and .changes file
# pair in the form needed for a legal Debian upload.  It is based on
# dpkg-buildpackage and debsign (which is also part of the devscripts
# package).
#
# In order for this program to work, debsign must be installed
# on the REMOTE machine which will be used to sign your package.
# You should run this program from within the package directory on
# the build machine.
#

# Debian GNU/Linux debrsign.
# Copyright 1999 Mike Goldman, all rights reserved
# Modifications copyright 1999 Julian Gilbey <jdg@debian.org>,
# all rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

# Abort if anything goes wrong
set -e

PROGNAME=`basename $0`

usage () {
    echo \
"Usage: debrsign [options] [username@]remotehost [changes or dsc]
  Options:
    -p<sign-command> The command to use for signing
    -e<maintainer>  Sign using key of <maintainer> (takes precedence over -m)
    -m<maintainer>  The same as -e
    -k<keyid>       The key to use for signing
    -S              Use changes file made for source-only upload
    -a<arch>        Use changes file made for Debian target architecture <arch>
    -t<target>      Use changes file made for GNU target architecture <target>
    --multi         Use most recent multiarch .changes file found
    --path          Specify directory GPG binary is located on remote host
    --help          Show this message
    --version       Show version and copyright information
  If a changes or dscfile is specified, it is signed, otherwise
  debian/changelog is parsed to find the changes file.  The signing
  is performed on remotehost using ssh and debsign."
}

version () {
    echo \
"This is debrsign, from the Debian devscripts package, version ###VERSION###
This code is copyright 1999 by Mike Goldman and Julian Gilbey,
all rights reserved.  This program comes with ABSOLUTELY NO WARRANTY.
You are free to redistribute this code under the terms of the
GNU General Public License, version 2 or later."
}

mustsetvar () {
    if [ "x$2" = x ]
    then
        echo >&2 "$PROGNAME: unable to determine $3"
        exit 1
    else
        # echo "$PROGNAME: $3 is $2"
        eval "$1=\"\$2\""
    fi
}

withecho () {
    echo " $@"
    "$@"
}

# --- main script

# For partial security, even though we know it doesn't work :(
# I guess maintainers will have to be careful, and there's no way around
# this in a shell script.
unset IFS
PATH=/usr/local/bin:/usr/bin:/bin
umask `perl -e 'printf "%03o\n", umask | 022'`

eval $(
    set +e
    for var in $VARS; do
        eval "$var=\$DEFAULT_$var"
    done
    for file in /etc/devscripts.conf ~/.devscripts; do
      [ -r $file ] && . $file
    done

    set | egrep '^DEBRSIGN_')

signargs=
while [ $# != 0 ]
do
    value="`echo x\"$1\" | sed -e 's/^x-.//'`"
    case "$1" in
        -S)         sourceonly="true" ;;
        -a*)        targetarch="$value" ;;
        -t*)        targetgnusystem="$value" ;;
        --multi)    multiarch="true" ;;
        --help)     usage; exit 0 ;;
        --version)  version; exit 0 ;;
        --path)     DEBRSIGN_PGP_PATH="$value" ;;
        -*)         signargs="$signargs '$1'" ;;
        *)          break ;;
    esac
    shift
done

# Command line parameters are remote host (mandatory) and changes file
# name (optional).  If there is no changes file name, we must be at the
# top level of a source tree and will figure out its name from
# debian/changelog
case $# in
    2)  remotehost="$1"
        case "$2" in
            *.dsc)
                changes=
                dsc=$2
                ;;
            *.changes)
                changes=$2
                dsc=`echo $changes | \
                    perl -pe 's/\.changes$/.dsc/; s/(.*)_(.*)_(.*)\.dsc/\1_\2.dsc/'`
                buildinfo=`echo $changes | \
                    perl -pe 's/\.changes$/.buildinfo/; s/(.*)_(.*)_(.*)\.buildinfo/\1_\2_\3.buildinfo/'`
                ;;
            *)
                echo "$PROGNAME: Only a .changes or .dsc file is allowed as second argument!" >&2
                exit 1
                ;;
        esac
        ;;

    1)  remotehost="$1"
        case "$1" in
            *.changes)
                echo "$PROGNAME: You must pass the address of the signing host as as the first argument" >&2
                exit 1
                ;;
            *)
                # We have to parse debian/changelog to find the current version
                if [ ! -r debian/changelog ]; then
                    echo "$PROGNAME: Must be run from top of source dir or a .changes file given as arg" >&2
                    exit 1
                fi
                ;;
        esac


        mustsetvar package "`dpkg-parsechangelog -SSource`" "source package"
        mustsetvar version "`dpkg-parsechangelog -SVersion`" "source version"

        if [ "x$sourceonly" = x ]
        then
            if [ -n "$targetarch" ] && [ -n "$targetgnusystem" ]; then
                mustsetvar arch "$(dpkg-architecture "-a${targetarch}" "-t${targetgnusystem}" -qDEB_HOST_ARCH)" "build architecture"
            elif [ -n "$targetarch" ]; then
                mustsetvar arch "$(dpkg-architecture "-a${targetarch}" -qDEB_HOST_ARCH)" "build architecture"
            elif [ -n "$targetgnusystem" ]; then
                mustsetvar arch "$(dpkg-architecture "-t${targetgnusystem}" -qDEB_HOST_ARCH)" "build architecture"
            else
                mustsetvar arch "$(dpkg-architecture -qDEB_HOST_ARCH)" "build architecture"
            fi
        else
            arch=source
        fi

        sversion=`echo "$version" | perl -pe 's/^\d+://'`
        pv="${package}_${sversion}"
        pva="${package}_${sversion}${arch:+_${arch}}"
        dsc="../$pv.dsc"
        buildinfo="../$pva.buildinfo"
        changes="../$pva.changes"
        if [ -n "$multiarch" -o ! -r $changes ]; then
            changes=$(ls "../${package}_${sversion}_*+*.changes" "../${package}_${sversion}_multi.changes" 2>/dev/null | head -1)
            if [ -z "$multiarch" ]; then
                if [ -n "$changes" ]; then
                    echo "$PROGNAME: could not find normal .changes file but found multiarch file:" >&2
                    echo "  $changes" >&2
                    echo "Using this changes file instead." >&2
                else
                    echo "$PROGNAME: Can't find or can't read changes file $changes!" >&2
                    exit 1
                fi
            elif [ -n "$multiarch" -a -z "$changes" ]; then
                echo "$PROGNAME: could not find any multiarch .changes file with name" >&2
                echo "../${package}_${sversion}_*.changes" >&2
                exit 1
            fi
        fi
        ;;

    *)        echo "Usage: $PROGNAME [options] [user@]remotehost [.changes or .dsc file]" >&2
        exit 1 ;;
esac

if [ "x$remotehost" == "x" ]
then
        echo "No [user@]remotehost specified!" >&2
        exit 1
fi

declare -A base
base["$changes"]=`basename "$changes"`
base["$dsc"]=`basename "$dsc"`
base["$buildinfo"]=`basename "$buildinfo"`

if [ -n "$changes" ]
then
    if [ ! -f "$changes" -o ! -r "$changes" ]
    then
        echo "Can't find or can't read changes file $changes!" >&2
        exit 1
    fi

    # Is there a dsc file listed in the changes file?
    if grep -q "${base[$dsc]}" "$changes"
    then
        if [ ! -f "$dsc" -o ! -r "$dsc" ]
        then
            echo "Can't find or can't read dsc file $dsc!" >&2
            exit 1
        fi
    else
        unset base["$dsc"]
    fi
    # Is there a buildinfo file listed in the changes file?
    if grep -q "${base[$buildinfo]}" "$changes"
    then
        if [ ! -f "$buildinfo" -o ! -r "$buildinfo" ]
        then
            echo "Can't find or can't read buildinfo file $buildinfo!" >&2
            exit 1
        fi
    else
        unset base["$buildinfo"]
    fi
    # Now do the real work
    withecho scp "${!base[@]}" "$remotehost:\$HOME"
    withecho ssh -t "$remotehost" "debsign $signargs ${base[$changes]}"
    for file in "${!base[@]}"
    do
        withecho scp "$remotehost:\$HOME/${base["$file"]}" "$file"
    done
    withecho ssh "$remotehost" "rm -f ${base[@]}"

    echo "Successfully signed changes file"
else
    if [ ! -f "$dsc" -o ! -r "$dsc" ]
    then
        echo "Can't find or can't read dsc file $dsc!" >&2
        exit 1
    fi

    withecho scp "$dsc" "$remotehost:\$HOME"
    withecho ssh -t "$remotehost" "${DEBRSIGN_PGP_PATH}debsign $signargs $dscbase"
    withecho scp "$remotehost:\$HOME/$dscbase" "$dsc"
    withecho ssh "$remotehost" "rm -f $dscbase"

    echo "Successfully signed dsc file"
fi
exit 0