/***
This file is part of systemd.
Copyright 2014 Kay Sievers
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <fcntl.h>
#include <stdbool.h>
#include <stdlib.h>
#include <syslog.h>
#include <unistd.h>
#include "alloc-util.h"
#include "base-filesystem.h"
#include "fd-util.h"
#include "log.h"
#include "macro.h"
#include "string-util.h"
#include "umask-util.h"
#include "user-util.h"
#include "util.h"
typedef struct BaseFilesystem {
const char *dir;
const char *target;
const char *exists;
bool ignore_failure;
#if defined(__i386__) || defined(__x86_64__)
{ "lib64", 0, "usr/lib/x86_64-linux-gnu\0"
"usr/lib64\0", "ld-linux-x86-64.so.2" },
#endif
};
unsigned i;
int r = 0;
if (fd < 0)
for (i = 0; i < ELEMENTSOF(table); i ++) {
continue;
/* check if one of the targets exists */
continue;
/* check if a specific file exists at the target path */
_cleanup_free_ char *p = NULL;
if (!p)
return log_oom();
continue;
}
target = s;
break;
}
if (!target)
continue;
}
continue;
}
RUN_WITH_UMASK(0000)
if (!table[i].ignore_failure)
return -errno;
}
}
}
return 0;
}