-
Notifications
You must be signed in to change notification settings - Fork 41
/
pkgindb.c
460 lines (379 loc) · 11.4 KB
/
pkgindb.c
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
/*
* Copyright (c) 2009-2015 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Emile "iMil" Heitor <[email protected]> .
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sqlite3.h>
#include "pkgin.h"
#define H_BUF 6
static sqlite3 *pdb;
static int repo_counter = 0;
static uint64_t savepoint_counter = 0;
static const char *pragmaopts[] = {
"locking_mode = EXCLUSIVE",
"empty_result_callbacks = 1",
"synchronous = EXTRA",
NULL
};
/*
* Used to keep track of the current query so that it can be used in the
* error log callback for diagnostics.
*
* Most database access goes through pkgindb_doquery which will set curquery
* to the query it has been passed, and then resets it to NULL afterwards.
* Any callers that perform their own database access should use curquery to
* store their query so that errors are logged correctly.
*/
static const char *curquery = NULL;
char *pkgin_dbdir;
char *pkgin_sqldb;
char *pkgin_cache;
char *pkgin_errlog;
char *pkgin_sqllog;
void
setup_pkgin_dbdir(void)
{
char *p;
if ((p = getenv("PKGIN_DBDIR")) != NULL)
pkgin_dbdir = xasprintf("%s", p);
else
pkgin_dbdir = xasprintf("%s", PKGIN_DBDIR);
pkgin_sqldb = xasprintf("%s/pkgin.db", pkgin_dbdir);
pkgin_cache = xasprintf("%s/cache", pkgin_dbdir);
pkgin_errlog = xasprintf("%s/pkg_install-err.log", pkgin_dbdir);
pkgin_sqllog = xasprintf("%s/sql.log", pkgin_dbdir);
if (access(pkgin_dbdir, F_OK) != 0) {
if (mkdir(pkgin_dbdir, 0755) < 0)
err(1, "Failed to create %s", pkgin_dbdir);
}
if (access(pkgin_cache, F_OK) != 0) {
if (mkdir(pkgin_cache, 0755) < 0)
err(1, "Failed to create %s", pkgin_cache);
}
}
uint8_t
have_privs(int reqd)
{
if ((reqd & PRIVS_PKGDB) &&
(access(pkgdb_get_dir(), F_OK) == 0) &&
(access(pkgdb_get_dir(), W_OK) < 0))
return 0;
if ((reqd & PRIVS_PKGINDB) &&
(access(pkgin_dbdir, F_OK) == 0) &&
(access(pkgin_dbdir, W_OK) < 0))
return 0;
return 1;
}
const char *
pdb_version(void)
{
return "SQLite "SQLITE_VERSION;
}
/*
* unused: optional parameter given as 4th argument of sqlite3_exec
* argc : row number
* argv : row
* col : column
*
* col[0] col[1] col[argc]
* ______________________________________
* | argv[0] | argv[1] | ... | argv[argc] |
*
* WARNING: callback is called on every line
*/
/* sqlite callback, record a single value */
int
pdb_get_value(void *param, int argc, char **argv, char **colname)
{
char *value = (char *)param;
if (argv != NULL) {
XSTRCPY(value, argv[0]);
return PDB_OK;
}
return PDB_ERR;
}
/*
* Record an error to the SQL log, optionally logging the query that caused
* the failure. Any errors opening the log for writing are ignored so that
* regular users can issue queries.
*/
static void
pkgindb_sqlerr_cb(void *arg, int errcode, const char *errmsg)
{
FILE *fp;
struct tm tm;
time_t now;
char curtime[64];
char **query = (char **)arg;
now = time(NULL);
tm = *(localtime(&now));
strftime(curtime, sizeof(curtime), "%Y-%m-%d %H:%M:%S %Z", &tm);
if ((fp = fopen(pkgin_sqllog, "a")) != NULL) {
fprintf(fp, "SQL error at %s\n", curtime);
fprintf(fp, " errmsg: %s\n", errmsg);
if (*query)
fprintf(fp, " query: %s\n", *query);
fclose(fp);
}
}
int
pkgindb_doquery(const char *query, int (*cb)(void *, int, char *[], char *[]),
void *param)
{
int rv;
/*
* Save the current query for the error logging callback, then reset
* to NULL after the query has completed to avoid leaking into the
* error log of callers that use the sqlite3_exec interface directly.
*/
curquery = query;
rv = sqlite3_exec(pdb, query, cb, param, NULL);
curquery = NULL;
return (rv == SQLITE_OK) ? PDB_OK : PDB_ERR;
}
int
pkgindb_dovaquery(const char *fmt, ...)
{
char *buf;
va_list ap;
int rv;
va_start(ap, fmt);
if ((buf = sqlite3_vmprintf(fmt, ap)) == NULL)
errx(EXIT_FAILURE, "Insufficient memory to construct query");
va_end(ap);
rv = pkgindb_doquery(buf, NULL, NULL);
sqlite3_free(buf);
return rv;
}
uint64_t
pkgindb_savepoint(void)
{
uint64_t savepoint = savepoint_counter++;
if (pkgindb_dovaquery("SAVEPOINT sp%"PRIu64, savepoint))
errx(EXIT_FAILURE, "savepoint: %s", sqlite3_errmsg(pdb));
return savepoint;
}
void
pkgindb_savepoint_rollback(uint64_t savepoint)
{
if (pkgindb_dovaquery("ROLLBACK TO sp%"PRIu64, savepoint)) {
errx(EXIT_FAILURE, "rollback savepoint %s",
sqlite3_errmsg(pdb));
}
}
void
pkgindb_savepoint_release(uint64_t savepoint)
{
if (pkgindb_dovaquery("RELEASE sp%"PRIu64, savepoint)) {
errx(EXIT_FAILURE, "release savepoint %s",
sqlite3_errmsg(pdb));
}
}
/*
* Configure the pkgin database. Returns 0 if opening an existing compatible
* database, or 1 if the database needs to be created or recreated (in the case
* of a schema upgrade). Any other error is fatal.
*/
int
pkgindb_open(void)
{
int create, i, oflags;
char buf[128];
/*
* Configure our sqlite error log callback function.
*/
sqlite3_config(SQLITE_CONFIG_LOG, pkgindb_sqlerr_cb, &curquery);
/*
* Determine if we need to create a new database or can load an
* existing one. The SQLITE_OPEN_READWRITE flag does not require that
* write privileges are available, if they are not then the database
* will be opened read-only, allowing normal users to perform queries.
*/
recreate:
create = 0;
oflags = SQLITE_OPEN_READWRITE;
if (access(pkgin_sqldb, F_OK) < 0) {
create = 1;
oflags |= SQLITE_OPEN_CREATE;
}
if (sqlite3_open_v2(pkgin_sqldb, &pdb, oflags, NULL) != SQLITE_OK)
err(EXIT_FAILURE, "cannot open database");
/*
* If we're creating or recreating a new database, attempt to populate
* the initial schema, otherwise perform a compatibility check. If the
* compatibility check fails then we simply remove the existing database
* and recreate, there is no support for online upgrades at this time.
*/
if (create) {
if (pkgindb_doquery(CREATE_DRYDB, NULL, NULL) != PDB_OK)
errx(EXIT_FAILURE, "cannot create database: %s",
sqlite3_errmsg(pdb));
} else {
if (pkgindb_doquery(CHECK_DB_LATEST, NULL, NULL) != PDB_OK) {
if (unlink(pkgin_sqldb) < 0)
err(EXIT_FAILURE, "cannot recreate database");
goto recreate;
}
}
/* Apply PRAGMA properties */
for (i = 0; pragmaopts[i] != NULL; i++) {
snprintf(buf, sizeof(buf), "PRAGMA %s;", pragmaopts[i]);
pkgindb_doquery(buf, NULL, NULL);
}
return create;
}
void
pkgindb_close(void)
{
sqlite3_close(pdb);
}
__attribute__((noreturn))
static void
pkgindb_sqlfail(void)
{
pkgindb_close();
errx(EXIT_FAILURE, "SQL query failed, see %s", pkgin_sqllog);
}
int
pkg_db_mtime(struct stat *st)
{
sqlite3_stmt *stmt;
time_t db_mtime;
long db_ntime;
int rc;
/* No pkgdb, just return up-to-date so we can start installing. */
if (stat(pkgdb_get_dir(), st) < 0)
return 0;
/*
* Fetch only the most recent rowid.
*/
curquery = "SELECT PKGDB_MTIME, PKGDB_NTIME FROM PKGDB "
"ORDER BY ROWID DESC LIMIT 1;";
if (sqlite3_prepare_v2(pdb, curquery, -1, &stmt, NULL) != SQLITE_OK)
pkgindb_sqlfail();
rc = sqlite3_step(stmt);
if (rc == SQLITE_ROW) {
db_mtime = sqlite3_column_int64(stmt, 0);
db_ntime = (long)sqlite3_column_int64(stmt, 1);
} else if (rc == SQLITE_DONE) {
db_mtime = 0;
db_ntime = 0;
} else {
/* This shouldn't happen, abort and investigate */
pkgindb_sqlfail();
}
sqlite3_finalize(stmt);
/* Databases matched pkgdb, we're up-to-date */
if (db_mtime == st->st_mtime && db_ntime == st->pkgin_nanotime)
return 0;
/* We're not up to date, request a refresh. */
return 1;
}
/*
* Update database to current mtime after insertion.
*/
void
pkg_db_update_mtime(struct stat *st)
{
sqlite3_stmt *stmt;
curquery = "INSERT INTO PKGDB (PKGDB_MTIME, PKGDB_NTIME) "
"VALUES (?, ?);";
if (sqlite3_prepare_v2(pdb, curquery, -1, &stmt, NULL) != SQLITE_OK)
pkgindb_sqlfail();
if (sqlite3_bind_int64(stmt, 1, st->st_mtime) != SQLITE_OK)
pkgindb_sqlfail();
if (sqlite3_bind_int64(stmt, 2, st->pkgin_nanotime) != SQLITE_OK)
pkgindb_sqlfail();
if (sqlite3_step(stmt) != SQLITE_DONE)
pkgindb_sqlfail();
sqlite3_finalize(stmt);
}
void
repo_record(char **repos)
{
int i;
char query[BUFSIZ], value[20];
for (i = 0; repos[i] != NULL; i++) {
sqlite3_snprintf(BUFSIZ, query, EXISTS_REPO, repos[i]);
pkgindb_doquery(query, pdb_get_value, &value[0]);
repo_counter++;
if (value[0] == '0') {
/* repository does not exists */
sqlite3_snprintf(BUFSIZ, query, INSERT_REPO, repos[i]);
pkgindb_doquery(query, NULL, NULL);
}
}
}
time_t
pkg_sum_mtime(char *repo)
{
time_t db_mtime = 0;
char str_mtime[20], query[BUFSIZ];
str_mtime[0] = '\0';
sqlite3_snprintf(BUFSIZ, query,
"SELECT REPO_MTIME FROM REPOS WHERE REPO_URL GLOB %Q || '*';",
repo);
pkgindb_doquery(query, pdb_get_value, str_mtime);
if (str_mtime[0] != '\0')
db_mtime = (time_t)strtol(str_mtime, (char **)NULL, 10);
return db_mtime;
}
void
pkgindb_stats(void)
{
sqlite3_stmt *stmt;
int lcount, rcount;
char lsize[H_BUF], rsize[H_BUF];
curquery = "SELECT "
" (SELECT COUNT(PKG_ID) FROM LOCAL_PKG) AS lcount, "
" (SELECT SUM(SIZE_PKG) FROM LOCAL_PKG) AS lsize, "
" (SELECT COUNT(PKG_ID) FROM REMOTE_PKG) AS rcount, "
" (SELECT SUM(FILE_SIZE) FROM REMOTE_PKG) AS rsize;";
if (sqlite3_prepare_v2(pdb, curquery, -1, &stmt, NULL) != SQLITE_OK)
pkgindb_sqlfail();
/* Anything other than a single row is an error */
if (sqlite3_step(stmt) != SQLITE_ROW)
pkgindb_sqlfail();
/*
* Counts are simple integers. Sizes are converted to human readable
* format.
*/
lcount = sqlite3_column_int(stmt, 0);
humanize_number(lsize, H_BUF, sqlite3_column_int64(stmt, 1), "",
HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL);
rcount = sqlite3_column_int(stmt, 2);
humanize_number(rsize, H_BUF, sqlite3_column_int64(stmt, 3), "",
HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL);
sqlite3_finalize(stmt);
printf("Local package database:\n"
"\tInstalled packages: %d\n"
"\tDisk space occupied: %s\n\n"
"Remote package database(s):\n"
"\tNumber of repositories: %d\n"
"\tPackages available: %d\n"
"\tTotal size of packages: %s\n",
lcount, lsize, repo_counter, rcount, rsize);
}