am 449e0dbe
: am fc1b9fa3
: am b66ee6c3
: Merge "Ensure that app lib symlinks are correctly labeled when created."
* commit '449e0dbe94126553c96cece21da54b40a6880f11': Ensure that app lib symlinks are correctly labeled when created.
This commit is contained in:
commit
2f9a3e73bf
@ -85,13 +85,6 @@ int install(const char *pkgname, uid_t uid, gid_t gid, const char *seinfo)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (symlink(applibdir, libsymlink) < 0) {
|
|
||||||
ALOGE("couldn't symlink directory '%s' -> '%s': %s\n", libsymlink, applibdir,
|
|
||||||
strerror(errno));
|
|
||||||
unlink(pkgdir);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (selinux_android_setfilecon(pkgdir, pkgname, seinfo, uid) < 0) {
|
if (selinux_android_setfilecon(pkgdir, pkgname, seinfo, uid) < 0) {
|
||||||
ALOGE("cannot setfilecon dir '%s': %s\n", pkgdir, strerror(errno));
|
ALOGE("cannot setfilecon dir '%s': %s\n", pkgdir, strerror(errno));
|
||||||
unlink(libsymlink);
|
unlink(libsymlink);
|
||||||
@ -99,6 +92,13 @@ int install(const char *pkgname, uid_t uid, gid_t gid, const char *seinfo)
|
|||||||
return -errno;
|
return -errno;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (symlink(applibdir, libsymlink) < 0) {
|
||||||
|
ALOGE("couldn't symlink directory '%s' -> '%s': %s\n", libsymlink, applibdir,
|
||||||
|
strerror(errno));
|
||||||
|
unlink(pkgdir);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (chown(pkgdir, uid, gid) < 0) {
|
if (chown(pkgdir, uid, gid) < 0) {
|
||||||
ALOGE("cannot chown dir '%s': %s\n", pkgdir, strerror(errno));
|
ALOGE("cannot chown dir '%s': %s\n", pkgdir, strerror(errno));
|
||||||
unlink(libsymlink);
|
unlink(libsymlink);
|
||||||
@ -241,13 +241,6 @@ int make_user_data(const char *pkgname, uid_t uid, userid_t userid, const char*
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (symlink(applibdir, libsymlink) < 0) {
|
|
||||||
ALOGE("couldn't symlink directory for non-primary '%s' -> '%s': %s\n", libsymlink,
|
|
||||||
applibdir, strerror(errno));
|
|
||||||
unlink(pkgdir);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (selinux_android_setfilecon(pkgdir, pkgname, seinfo, uid) < 0) {
|
if (selinux_android_setfilecon(pkgdir, pkgname, seinfo, uid) < 0) {
|
||||||
ALOGE("cannot setfilecon dir '%s': %s\n", pkgdir, strerror(errno));
|
ALOGE("cannot setfilecon dir '%s': %s\n", pkgdir, strerror(errno));
|
||||||
unlink(libsymlink);
|
unlink(libsymlink);
|
||||||
@ -255,6 +248,13 @@ int make_user_data(const char *pkgname, uid_t uid, userid_t userid, const char*
|
|||||||
return -errno;
|
return -errno;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (symlink(applibdir, libsymlink) < 0) {
|
||||||
|
ALOGE("couldn't symlink directory for non-primary '%s' -> '%s': %s\n", libsymlink,
|
||||||
|
applibdir, strerror(errno));
|
||||||
|
unlink(pkgdir);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (chown(pkgdir, uid, uid) < 0) {
|
if (chown(pkgdir, uid, uid) < 0) {
|
||||||
ALOGE("cannot chown dir '%s': %s\n", pkgdir, strerror(errno));
|
ALOGE("cannot chown dir '%s': %s\n", pkgdir, strerror(errno));
|
||||||
unlink(libsymlink);
|
unlink(libsymlink);
|
||||||
|
Loading…
Reference in New Issue
Block a user