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
|
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdio.h>
#include <mntent.h>
#include "nfslib.h"
#include "conffile.h"
#include "systemd.h"
#define RPC_PIPEFS_DEFAULT NFS_STATEDIR "/rpc_pipefs"
static int generate_mount_unit(const char *pipefs_path, const char *pipefs_unit,
const char *dirname)
{
char *path;
FILE *f;
size_t size = (strlen(dirname) + 1 + strlen(pipefs_unit) + 1);
path = malloc(size);
if (!path)
return 1;
snprintf(path, size, "%s/%s", dirname, pipefs_unit);
f = fopen(path, "w");
if (!f)
{
free(path);
return 1;
}
fprintf(f, "# Automatically generated by rpc-pipefs-generator\n\n[Unit]\n");
fprintf(f, "Description=RPC Pipe File System\n");
fprintf(f, "DefaultDependencies=no\n");
fprintf(f, "After=systemd-tmpfiles-setup.service\n");
fprintf(f, "Conflicts=umount.target\n");
fprintf(f, "\n[Mount]\n");
fprintf(f, "What=sunrpc\n");
fprintf(f, "Where=%s\n", pipefs_path);
fprintf(f, "Type=rpc_pipefs\n");
fclose(f);
free(path);
return 0;
}
static
int generate_target(char *pipefs_path, const char *dirname)
{
char *path;
char filebase[] = "/rpc_pipefs.target";
char *pipefs_unit;
FILE *f;
int ret = 0;
pipefs_unit = systemd_escape(pipefs_path, ".mount");
if (!pipefs_unit)
return 1;
ret = generate_mount_unit(pipefs_path, pipefs_unit, dirname);
if (ret) {
free(pipefs_unit);
return ret;
}
path = malloc(strlen(dirname) + 1 + sizeof(filebase));
if (!path) {
free(pipefs_unit);
return 2;
}
sprintf(path, "%s", dirname);
mkdir(path, 0755);
strcat(path, filebase);
f = fopen(path, "w");
if (!f)
{
free(path);
free(pipefs_unit);
return 1;
}
fprintf(f, "# Automatically generated by rpc-pipefs-generator\n\n[Unit]\n");
fprintf(f, "Requires=%s\n", pipefs_unit);
fprintf(f, "After=%s\n", pipefs_unit);
fclose(f);
free(path);
free(pipefs_unit);
return 0;
}
static int is_non_pipefs_mountpoint(char *path)
{
FILE *mtab;
struct mntent *mnt;
mtab = setmntent("/etc/mtab", "r");
if (!mtab)
return 0;
while ((mnt = getmntent(mtab)) != NULL) {
if (strlen(mnt->mnt_dir) != strlen(path))
continue;
if (strncmp(mnt->mnt_dir, path, strlen(mnt->mnt_dir)))
continue;
if (strncmp(mnt->mnt_type, "rpc_pipefs", strlen(mnt->mnt_type)))
break;
}
fclose(mtab);
return mnt != NULL;
}
int main(int argc, char *argv[])
{
int ret;
char *s;
xlog_syslog(0);
if (argc != 4 || argv[1][0] != '/') {
fprintf(stderr, "rpc-pipefs-generator: create systemd dependencies for nfs services\n");
fprintf(stderr, "Usage: normal-dir early-dir late-dir\n");
exit(1);
}
conf_init_file(NFS_CONFFILE);
s = conf_get_str("general", "pipefs-directory");
if (!s)
exit(0);
if (is_non_pipefs_mountpoint(s))
exit(1);
ret = generate_target(s, argv[1]);
exit(ret);
}
|