io: make ostream_file always use tmpname
parent
2156107afc
commit
6d71f49c11
|
@ -147,7 +147,7 @@ struct apk_ostream {
|
||||||
struct apk_ostream *apk_ostream_gzip(struct apk_ostream *);
|
struct apk_ostream *apk_ostream_gzip(struct apk_ostream *);
|
||||||
struct apk_ostream *apk_ostream_counter(off_t *);
|
struct apk_ostream *apk_ostream_counter(off_t *);
|
||||||
struct apk_ostream *apk_ostream_to_fd(int fd);
|
struct apk_ostream *apk_ostream_to_fd(int fd);
|
||||||
struct apk_ostream *apk_ostream_to_file(int atfd, const char *file, const char *tmpfile, mode_t mode);
|
struct apk_ostream *apk_ostream_to_file(int atfd, const char *file, mode_t mode);
|
||||||
struct apk_ostream *apk_ostream_to_file_gz(int atfd, const char *file, const char *tmpfile, mode_t mode);
|
struct apk_ostream *apk_ostream_to_file_gz(int atfd, const char *file, const char *tmpfile, mode_t mode);
|
||||||
size_t apk_ostream_write_string(struct apk_ostream *ostream, const char *string);
|
size_t apk_ostream_write_string(struct apk_ostream *ostream, const char *string);
|
||||||
static inline void apk_ostream_cancel(struct apk_ostream *os, int rc) { if (!os->rc) os->rc = rc; }
|
static inline void apk_ostream_cancel(struct apk_ostream *os, int rc) { if (!os->rc) os->rc = rc; }
|
||||||
|
|
|
@ -64,22 +64,17 @@ static int update_signatures(struct adb_xfrm *xfrm, struct adb_block *blk, struc
|
||||||
|
|
||||||
static int adbsign_main(void *pctx, struct apk_database *db, struct apk_string_array *args)
|
static int adbsign_main(void *pctx, struct apk_database *db, struct apk_string_array *args)
|
||||||
{
|
{
|
||||||
char tmpname[PATH_MAX];
|
|
||||||
struct sign_ctx *ctx = pctx;
|
struct sign_ctx *ctx = pctx;
|
||||||
char **arg;
|
char **arg;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
ctx->db = db;
|
ctx->db = db;
|
||||||
foreach_array_item(arg, args) {
|
foreach_array_item(arg, args) {
|
||||||
if (snprintf(tmpname, sizeof tmpname, "%s.tmp", *arg) >= sizeof tmpname) {
|
ctx->xfrm.is = apk_istream_from_file(AT_FDCWD, *arg);
|
||||||
r = ENAMETOOLONG;
|
ctx->xfrm.os = apk_ostream_to_file(AT_FDCWD, *arg, 0644);
|
||||||
} else {
|
adb_c_xfrm(&ctx->xfrm, update_signatures);
|
||||||
ctx->xfrm.is = apk_istream_from_file(AT_FDCWD, *arg);
|
apk_istream_close(ctx->xfrm.is);
|
||||||
ctx->xfrm.os = apk_ostream_to_file(AT_FDCWD, *arg, tmpname, 0644);
|
r = apk_ostream_close(ctx->xfrm.os);
|
||||||
adb_c_xfrm(&ctx->xfrm, update_signatures);
|
|
||||||
apk_istream_close(ctx->xfrm.is);
|
|
||||||
r = apk_ostream_close(ctx->xfrm.os);
|
|
||||||
}
|
|
||||||
if (r) apk_error("%s: %s", *arg, apk_error_str(r));
|
if (r) apk_error("%s: %s", *arg, apk_error_str(r));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -216,7 +216,7 @@ static int conv_main(void *pctx, struct apk_database *db, struct apk_string_arra
|
||||||
|
|
||||||
r = adb_c_create(
|
r = adb_c_create(
|
||||||
//apk_ostream_to_file(db->root_fd, "lib/apk/db/installed.adb", 0644),
|
//apk_ostream_to_file(db->root_fd, "lib/apk/db/installed.adb", 0644),
|
||||||
apk_ostream_to_file(AT_FDCWD, "installed.adb", 0, 0644),
|
apk_ostream_to_file(AT_FDCWD, "installed.adb", 0644),
|
||||||
&ctx->dbi, &db->trust);
|
&ctx->dbi, &db->trust);
|
||||||
if (r == 0) {
|
if (r == 0) {
|
||||||
// unlink old files
|
// unlink old files
|
||||||
|
|
|
@ -199,7 +199,7 @@ static int index_main(void *ctx, struct apk_database *db, struct apk_string_arra
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (ictx->output != NULL)
|
if (ictx->output != NULL)
|
||||||
os = apk_ostream_to_file(AT_FDCWD, ictx->output, NULL, 0644);
|
os = apk_ostream_to_file(AT_FDCWD, ictx->output, 0644);
|
||||||
else
|
else
|
||||||
os = apk_ostream_to_fd(STDOUT_FILENO);
|
os = apk_ostream_to_fd(STDOUT_FILENO);
|
||||||
if (IS_ERR_OR_NULL(os)) return -1;
|
if (IS_ERR_OR_NULL(os)) return -1;
|
||||||
|
|
|
@ -293,7 +293,7 @@ static int mkndx_main(void *pctx, struct apk_database *db, struct apk_string_arr
|
||||||
adb_w_rootobj(&ndx);
|
adb_w_rootobj(&ndx);
|
||||||
|
|
||||||
r = adb_c_create(
|
r = adb_c_create(
|
||||||
apk_ostream_to_file(AT_FDCWD, ctx->output, NULL, 0644),
|
apk_ostream_to_file(AT_FDCWD, ctx->output, 0644),
|
||||||
&ctx->db, &db->trust);
|
&ctx->db, &db->trust);
|
||||||
|
|
||||||
adb_free(&ctx->db);
|
adb_free(&ctx->db);
|
||||||
|
|
|
@ -53,23 +53,13 @@ unsigned int apk_flags = 0, apk_force = 0;
|
||||||
static apk_blob_t tmpprefix = { .len=8, .ptr = ".apknew." };
|
static apk_blob_t tmpprefix = { .len=8, .ptr = ".apknew." };
|
||||||
|
|
||||||
static const char * const apkindex_tar_gz = "APKINDEX.tar.gz";
|
static const char * const apkindex_tar_gz = "APKINDEX.tar.gz";
|
||||||
|
|
||||||
static const char * const apk_static_cache_dir = "var/cache/apk";
|
static const char * const apk_static_cache_dir = "var/cache/apk";
|
||||||
|
|
||||||
static const char * const apk_world_file = "etc/apk/world";
|
static const char * const apk_world_file = "etc/apk/world";
|
||||||
static const char * const apk_world_file_tmp = "etc/apk/world.new";
|
|
||||||
static const char * const apk_arch_file = "etc/apk/arch";
|
static const char * const apk_arch_file = "etc/apk/arch";
|
||||||
|
|
||||||
static const char * const apk_lock_file = "lib/apk/db/lock";
|
static const char * const apk_lock_file = "lib/apk/db/lock";
|
||||||
|
|
||||||
static const char * const apk_scripts_file = "lib/apk/db/scripts.tar";
|
static const char * const apk_scripts_file = "lib/apk/db/scripts.tar";
|
||||||
static const char * const apk_scripts_file_tmp = "lib/apk/db/scripts.tar.new";
|
|
||||||
|
|
||||||
static const char * const apk_triggers_file = "lib/apk/db/triggers";
|
static const char * const apk_triggers_file = "lib/apk/db/triggers";
|
||||||
static const char * const apk_triggers_file_tmp = "lib/apk/db/triggers.new";
|
|
||||||
|
|
||||||
const char * const apk_installed_file = "lib/apk/db/installed";
|
const char * const apk_installed_file = "lib/apk/db/installed";
|
||||||
static const char * const apk_installed_file_tmp = "lib/apk/db/installed.new";
|
|
||||||
|
|
||||||
static struct apk_db_acl *apk_default_acl_dir, *apk_default_acl_file;
|
static struct apk_db_acl *apk_default_acl_dir, *apk_default_acl_file;
|
||||||
|
|
||||||
|
@ -1221,10 +1211,7 @@ static int apk_db_index_write_nr_cache(struct apk_database *db)
|
||||||
|
|
||||||
/* Write list of installed non-repository packages to
|
/* Write list of installed non-repository packages to
|
||||||
* cached index file */
|
* cached index file */
|
||||||
os = apk_ostream_to_file(db->cache_fd,
|
os = apk_ostream_to_file(db->cache_fd, "installed", 0644);
|
||||||
"installed",
|
|
||||||
"installed.new",
|
|
||||||
0644);
|
|
||||||
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
||||||
|
|
||||||
ctx.os = os;
|
ctx.os = os;
|
||||||
|
@ -1767,29 +1754,20 @@ int apk_db_write_config(struct apk_database *db)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
os = apk_ostream_to_file(db->root_fd,
|
os = apk_ostream_to_file(db->root_fd, apk_world_file, 0644);
|
||||||
apk_world_file,
|
|
||||||
apk_world_file_tmp,
|
|
||||||
0644);
|
|
||||||
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
||||||
apk_deps_write(db, db->world, os, APK_BLOB_PTR_LEN("\n", 1));
|
apk_deps_write(db, db->world, os, APK_BLOB_PTR_LEN("\n", 1));
|
||||||
apk_ostream_write(os, "\n", 1);
|
apk_ostream_write(os, "\n", 1);
|
||||||
r = apk_ostream_close(os);
|
r = apk_ostream_close(os);
|
||||||
if (r < 0) return r;
|
if (r < 0) return r;
|
||||||
|
|
||||||
os = apk_ostream_to_file(db->root_fd,
|
os = apk_ostream_to_file(db->root_fd, apk_installed_file, 0644);
|
||||||
apk_installed_file,
|
|
||||||
apk_installed_file_tmp,
|
|
||||||
0644);
|
|
||||||
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
||||||
apk_db_write_fdb(db, os);
|
apk_db_write_fdb(db, os);
|
||||||
r = apk_ostream_close(os);
|
r = apk_ostream_close(os);
|
||||||
if (r < 0) return r;
|
if (r < 0) return r;
|
||||||
|
|
||||||
os = apk_ostream_to_file(db->root_fd,
|
os = apk_ostream_to_file(db->root_fd, apk_scripts_file, 0644);
|
||||||
apk_scripts_file,
|
|
||||||
apk_scripts_file_tmp,
|
|
||||||
0644);
|
|
||||||
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
||||||
apk_db_scriptdb_write(db, os);
|
apk_db_scriptdb_write(db, os);
|
||||||
r = apk_ostream_close(os);
|
r = apk_ostream_close(os);
|
||||||
|
@ -1797,10 +1775,7 @@ int apk_db_write_config(struct apk_database *db)
|
||||||
|
|
||||||
apk_db_index_write_nr_cache(db);
|
apk_db_index_write_nr_cache(db);
|
||||||
|
|
||||||
os = apk_ostream_to_file(db->root_fd,
|
os = apk_ostream_to_file(db->root_fd, apk_triggers_file, 0644);
|
||||||
apk_triggers_file,
|
|
||||||
apk_triggers_file_tmp,
|
|
||||||
0644);
|
|
||||||
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
||||||
apk_db_triggers_write(db, os);
|
apk_db_triggers_write(db, os);
|
||||||
r = apk_ostream_close(os);
|
r = apk_ostream_close(os);
|
||||||
|
|
41
src/io.c
41
src/io.c
|
@ -829,7 +829,7 @@ struct apk_fd_ostream {
|
||||||
struct apk_ostream os;
|
struct apk_ostream os;
|
||||||
int fd;
|
int fd;
|
||||||
|
|
||||||
const char *file, *tmpfile;
|
const char *file;
|
||||||
int atfd;
|
int atfd;
|
||||||
|
|
||||||
size_t bytes;
|
size_t bytes;
|
||||||
|
@ -902,12 +902,17 @@ static int fdo_close(struct apk_ostream *os)
|
||||||
close(fos->fd) < 0)
|
close(fos->fd) < 0)
|
||||||
rc = -errno;
|
rc = -errno;
|
||||||
|
|
||||||
if (fos->tmpfile != NULL) {
|
if (fos->file) {
|
||||||
if (rc == 0)
|
char tmpname[PATH_MAX];
|
||||||
renameat(fos->atfd, fos->tmpfile,
|
|
||||||
fos->atfd, fos->file);
|
snprintf(tmpname, sizeof tmpname, "%s.tmp", fos->file);
|
||||||
else
|
if (rc == 0) {
|
||||||
unlinkat(fos->atfd, fos->tmpfile, 0);
|
if (renameat(fos->atfd, tmpname,
|
||||||
|
fos->atfd, fos->file) < 0)
|
||||||
|
rc = -errno;
|
||||||
|
} else {
|
||||||
|
unlinkat(fos->atfd, tmpname, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
free(fos);
|
free(fos);
|
||||||
|
@ -940,15 +945,16 @@ struct apk_ostream *apk_ostream_to_fd(int fd)
|
||||||
return &fos->os;
|
return &fos->os;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct apk_ostream *apk_ostream_to_file(int atfd,
|
struct apk_ostream *apk_ostream_to_file(int atfd, const char *file, mode_t mode)
|
||||||
const char *file,
|
|
||||||
const char *tmpfile,
|
|
||||||
mode_t mode)
|
|
||||||
{
|
{
|
||||||
|
char tmpname[PATH_MAX];
|
||||||
struct apk_ostream *os;
|
struct apk_ostream *os;
|
||||||
int fd;
|
int fd;
|
||||||
|
|
||||||
fd = openat(atfd, tmpfile ?: file, O_CREAT | O_RDWR | O_TRUNC | O_CLOEXEC, mode);
|
if (snprintf(tmpname, sizeof tmpname, "%s.tmp", file) >= sizeof tmpname)
|
||||||
|
return ERR_PTR(-ENAMETOOLONG);
|
||||||
|
|
||||||
|
fd = openat(atfd, tmpname, O_CREAT | O_RDWR | O_TRUNC | O_CLOEXEC, mode);
|
||||||
if (fd < 0) return ERR_PTR(-errno);
|
if (fd < 0) return ERR_PTR(-errno);
|
||||||
|
|
||||||
fcntl(fd, F_SETFD, FD_CLOEXEC);
|
fcntl(fd, F_SETFD, FD_CLOEXEC);
|
||||||
|
@ -956,13 +962,10 @@ struct apk_ostream *apk_ostream_to_file(int atfd,
|
||||||
os = apk_ostream_to_fd(fd);
|
os = apk_ostream_to_fd(fd);
|
||||||
if (IS_ERR_OR_NULL(os)) return ERR_CAST(os);
|
if (IS_ERR_OR_NULL(os)) return ERR_CAST(os);
|
||||||
|
|
||||||
if (tmpfile != NULL) {
|
struct apk_fd_ostream *fos = container_of(os, struct apk_fd_ostream, os);
|
||||||
struct apk_fd_ostream *fos =
|
fos->file = file;
|
||||||
container_of(os, struct apk_fd_ostream, os);
|
fos->atfd = atfd;
|
||||||
fos->file = file;
|
|
||||||
fos->tmpfile = tmpfile;
|
|
||||||
fos->atfd = atfd;
|
|
||||||
}
|
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue