This file is indexed.

/usr/include/msgpack/zbuffer.h is in libmsgpack-dev 0.5.7-3.

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
/*
 * MessagePack for C deflate buffer implementation
 *
 * Copyright (C) 2010 FURUHASHI Sadayuki
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
#ifndef MSGPACK_ZBUFFER_H__
#define MSGPACK_ZBUFFER_H__

#include "sysdep.h"
#include <stdlib.h>
#include <string.h>
#include <zlib.h>

#ifdef __cplusplus
extern "C" {
#endif


/**
 * @defgroup msgpack_zbuffer Compressed buffer
 * @ingroup msgpack_buffer
 * @{
 */

typedef struct msgpack_zbuffer {
	z_stream stream;
	char* data;
	size_t init_size;
} msgpack_zbuffer;

#ifndef MSGPACK_ZBUFFER_INIT_SIZE
#define MSGPACK_ZBUFFER_INIT_SIZE 8192
#endif

static inline bool msgpack_zbuffer_init(msgpack_zbuffer* zbuf,
		int level, size_t init_size);
static inline void msgpack_zbuffer_destroy(msgpack_zbuffer* zbuf);

static inline msgpack_zbuffer* msgpack_zbuffer_new(int level, size_t init_size);
static inline void msgpack_zbuffer_free(msgpack_zbuffer* zbuf);

static inline char* msgpack_zbuffer_flush(msgpack_zbuffer* zbuf);

static inline const char* msgpack_zbuffer_data(const msgpack_zbuffer* zbuf);
static inline size_t msgpack_zbuffer_size(const msgpack_zbuffer* zbuf);

static inline bool msgpack_zbuffer_reset(msgpack_zbuffer* zbuf);
static inline void msgpack_zbuffer_reset_buffer(msgpack_zbuffer* zbuf);
static inline char* msgpack_zbuffer_release_buffer(msgpack_zbuffer* zbuf);


#ifndef MSGPACK_ZBUFFER_RESERVE_SIZE
#define MSGPACK_ZBUFFER_RESERVE_SIZE 512
#endif

static inline int msgpack_zbuffer_write(void* data, const char* buf, unsigned int len);

static inline bool msgpack_zbuffer_expand(msgpack_zbuffer* zbuf);


bool msgpack_zbuffer_init(msgpack_zbuffer* zbuf,
		int level, size_t init_size)
{
	memset(zbuf, 0, sizeof(msgpack_zbuffer));
	zbuf->init_size = init_size;
	if(deflateInit(&zbuf->stream, level) != Z_OK) {
		free(zbuf->data);
		return false;
	}
	return true;
}

void msgpack_zbuffer_destroy(msgpack_zbuffer* zbuf)
{
	deflateEnd(&zbuf->stream);
	free(zbuf->data);
}

msgpack_zbuffer* msgpack_zbuffer_new(int level, size_t init_size)
{
	msgpack_zbuffer* zbuf = (msgpack_zbuffer*)malloc(sizeof(msgpack_zbuffer));
	if(!msgpack_zbuffer_init(zbuf, level, init_size)) {
		free(zbuf);
		return NULL;
	}
	return zbuf;
}

void msgpack_zbuffer_free(msgpack_zbuffer* zbuf)
{
	if(zbuf == NULL) { return; }
	msgpack_zbuffer_destroy(zbuf);
	free(zbuf);
}

bool msgpack_zbuffer_expand(msgpack_zbuffer* zbuf)
{
	size_t used = (char*)zbuf->stream.next_out - zbuf->data;
	size_t csize = used + zbuf->stream.avail_out;
	size_t nsize = (csize == 0) ? zbuf->init_size : csize * 2;

	char* tmp = (char*)realloc(zbuf->data, nsize);
	if(tmp == NULL) {
		return false;
	}

	zbuf->data = tmp;
	zbuf->stream.next_out  = (Bytef*)(tmp + used);
	zbuf->stream.avail_out = nsize - used;

	return true;
}

int msgpack_zbuffer_write(void* data, const char* buf, unsigned int len)
{
	msgpack_zbuffer* zbuf = (msgpack_zbuffer*)data;

	zbuf->stream.next_in = (Bytef*)buf;
	zbuf->stream.avail_in = len;

	do {
		if(zbuf->stream.avail_out < MSGPACK_ZBUFFER_RESERVE_SIZE) {
			if(!msgpack_zbuffer_expand(zbuf)) {
				return -1;
			}
		}

		if(deflate(&zbuf->stream, Z_NO_FLUSH) != Z_OK) {
			return -1;
		}
	} while(zbuf->stream.avail_in > 0);

	return 0;
}

char* msgpack_zbuffer_flush(msgpack_zbuffer* zbuf)
{
	while(true) {
		switch(deflate(&zbuf->stream, Z_FINISH)) {
		case Z_STREAM_END:
			return zbuf->data;
		case Z_OK:
			if(!msgpack_zbuffer_expand(zbuf)) {
				return NULL;
			}
			break;
		default:
			return NULL;
		}
	}
}

const char* msgpack_zbuffer_data(const msgpack_zbuffer* zbuf)
{
	return zbuf->data;
}

size_t msgpack_zbuffer_size(const msgpack_zbuffer* zbuf)
{
	return (char*)zbuf->stream.next_out - zbuf->data;
}

void msgpack_zbuffer_reset_buffer(msgpack_zbuffer* zbuf)
{
	zbuf->stream.avail_out += (char*)zbuf->stream.next_out - zbuf->data;
	zbuf->stream.next_out = (Bytef*)zbuf->data;
}

bool msgpack_zbuffer_reset(msgpack_zbuffer* zbuf)
{
	if(deflateReset(&zbuf->stream) != Z_OK) {
		return false;
	}
	msgpack_zbuffer_reset_buffer(zbuf);
	return true;
}

char* msgpack_zbuffer_release_buffer(msgpack_zbuffer* zbuf)
{
	char* tmp = zbuf->data;
	zbuf->data = NULL;
	zbuf->stream.next_out = NULL;
	zbuf->stream.avail_out = 0;
	return tmp;
}

/** @} */


#ifdef __cplusplus
}
#endif

#endif /* msgpack/zbuffer.h */