This file is indexed.

/usr/share/php/PhpAmqpLib/Wire/AMQPWriter.php is in php-amqplib 2.4.1-1.

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

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
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
<?php

namespace PhpAmqpLib\Wire;

use PhpAmqpLib\Exception\AMQPInvalidArgumentException;
use PhpAmqpLib\Exception\AMQPOutOfBoundsException;

class AMQPWriter
{

    /**
     * @var string
     */
    protected $out;

    /**
     * @var array
     */
    protected $bits;

    /**
     * @var int
     */
    protected $bitcount;



    public function __construct()
    {
        $this->out = "";
        $this->bits = array();
        $this->bitcount = 0;
    }



    private static function chrbytesplit($x, $bytes)
    {
        return array_map('chr', AMQPWriter::bytesplit($x, $bytes));
    }



    /**
     * Splits number (could be either int or string) into array of byte
     * values (represented as integers) in big-endian byte order.
     */
    private static function bytesplit($x, $bytes)
    {
        if (is_int($x)) {
            if ($x < 0) {
                $x = sprintf("%u", $x);
            }
        }

        $res = array();

        while ($bytes > 0) {
            $b = bcmod($x, '256');
            $res[] = (int) $b;
            $x = bcdiv($x, '256', 0);
            $bytes--;
        }

        $res = array_reverse($res);

        if ($x != 0) {
            throw new AMQPOutOfBoundsException("Value too big!");
        }

        return $res;
    }



    private function flushbits()
    {
        if (!empty($this->bits)) {
            $this->out .= implode("", array_map('chr', $this->bits));
            $this->bits = array();
            $this->bitcount = 0;
        }
    }



    /**
     * Get what's been encoded so far.
     */
    public function getvalue()
    {
        /* temporarily needed for compatibility with write_bit unit tests */
        if ($this->bitcount) {
            $this->flushbits();
        }

        return $this->out;
    }



    /**
     * Write a plain PHP string, with no special encoding.
     */
    public function write($s)
    {
        $this->out .= $s;

        return $this;
    }



    /**
     * Write a boolean value.
     * (deprecated, use write_bits instead)
     */
    public function write_bit($b)
    {
        if ($b) {
            $b = 1;
        } else {
            $b = 0;
        }

        $shift = $this->bitcount % 8;

        if ($shift == 0) {
            $last = 0;
        } else {
            $last = array_pop($this->bits);
        }

        $last |= ($b << $shift);
        array_push($this->bits, $last);

        $this->bitcount += 1;

        return $this;
    }



    /**
     * Write multiple bits as an octet.
     */
    public function write_bits($bits)
    {
        $value = 0;

        foreach ($bits as $n => $bit) {
            $bit = $bit ? 1 : 0;
            $value |= ($bit << $n);
        }

        $this->out .= chr($value);

        return $this;
    }



    /**
     * Write an integer as an unsigned 8-bit value.
     */
    public function write_octet($n)
    {
        if ($n < 0 || $n > 255) {
            throw new AMQPInvalidArgumentException('Octet out of range 0..255');
        }

        $this->out .= chr($n);

        return $this;
    }



    /**
     * Write an integer as an unsigned 16-bit value.
     */
    public function write_short($n)
    {
        if ($n < 0 || $n > 65535) {
            throw new AMQPInvalidArgumentException('Octet out of range 0..65535');
        }

        $this->out .= pack('n', $n);

        return $this;
    }



    /**
     * Write an integer as an unsigned 32-bit value.
     */
    public function write_long($n)
    {
        $this->out .= pack('N', $n);

        return $this;
    }



    private function write_signed_long($n)
    {
        // although format spec for 'N' mentions unsigned
        // it will deal with sinned integers as well. tested.
        $this->out .= pack('N', $n);

        return $this;
    }



    /**
     * Write an integer as an unsigned 64-bit value.
     */
    public function write_longlong($n)
    {
        // if PHP_INT_MAX is big enough for that
        // (always on 64 bits, with smaller values in 32 bits)
        if ($n <= PHP_INT_MAX) {
            // trick explained in http://www.php.net/manual/fr/function.pack.php#109328
            $n1 = ($n & 0xffffffff00000000) >> 32;
            $n2 = ($n & 0x00000000ffffffff);
            $this->out .= pack('NN', $n1, $n2);
        } else {
            $this->out .= implode("", AMQPWriter::chrbytesplit($n, 8));
        }

        return $this;
    }



    /**
     * Write a string up to 255 bytes long after encoding.
     * Assume UTF-8 encoding.
     */
    public function write_shortstr($s)
    {
        $len = mb_strlen($s, 'ASCII');
        if ($len > 255) {
            throw new AMQPInvalidArgumentException('String too long');
        }

        $this->write_octet($len);
        $this->out .= $s;

        return $this;
    }



    /*
     * Write a string up to 2**32 bytes long.  Assume UTF-8 encoding.
     */
    public function write_longstr($s)
    {
        $this->write_long(mb_strlen($s, 'ASCII'));
        $this->out .= $s;

        return $this;
    }



    /**
     * Supports the writing of Array types, so that you can implement
     * array methods, like Rabbitmq's HA parameters
     *
     * @param array $a
     *
     * @return self
     */
    public function write_array($a)
    {
        $data = new AMQPWriter();

        foreach ($a as $v) {
            if (is_string($v)) {
                $data->write('S');
                $data->write_longstr($v);
            } elseif (is_int($v)) {
                $data->write('I');
                $data->write_signed_long($v);
            } elseif ($v instanceof AMQPDecimal) {
                $data->write('D');
                $data->write_octet($v->e);
                $data->write_signed_long($v->n);
            } elseif (is_array($v)) {
                $data->write('A');
                $data->write_array($v);
            } elseif (is_bool($v)) {
                $data->write('t');
                $data->write_octet($v ? 1 : 0);
            }
        }

        $data = $data->getvalue();
        $this->write_long(mb_strlen($data, 'ASCII'));
        $this->write($data);

        return $this;
    }



    /**
     * Write unix time_t value as 64 bit timestamp.
     */
    public function write_timestamp($v)
    {
        $this->write_longlong($v);

        return $this;
    }



    /**
     * Write PHP array, as table. Input array format: keys are strings,
     * values are (type,value) tuples.
     */
    public function write_table($d)
    {
        $table_data = new AMQPWriter();
        foreach ($d as $k => $va) {
            list($ftype, $v) = $va;
            $table_data->write_shortstr($k);
            if ($ftype == 'S') {
                $table_data->write('S');
                $table_data->write_longstr($v);
            } elseif ($ftype == 'I') {
                $table_data->write('I');
                $table_data->write_signed_long($v);
            } elseif ($ftype == 'D') {
                // 'D' type values are passed AMQPDecimal instances.
                $table_data->write('D');
                $table_data->write_octet($v->e);
                $table_data->write_signed_long($v->n);
            } elseif ($ftype == 'T') {
                $table_data->write('T');
                $table_data->write_timestamp($v);
            } elseif ($ftype == 'F') {
                $table_data->write('F');
                $table_data->write_table($v);
            } elseif ($ftype == 'A') {
                $table_data->write('A');
                $table_data->write_array($v);
            } elseif ($ftype == 't') {
                $table_data->write('t');
                $table_data->write_octet($v ? 1 : 0);
            } else {
                throw new AMQPInvalidArgumentException(sprintf("Invalid type '%s'", $ftype));
            }
        }

        $table_data = $table_data->getvalue();
        $this->write_long(mb_strlen($table_data, 'ASCII'));
        $this->write($table_data);

        return $this;
    }
}