]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/nfsdcld/nfsdcld.c
nfsdcld: add check/update functionality
[nfs-utils.git] / utils / nfsdcld / nfsdcld.c
1 /*
2  * nfsdcld.c -- NFSv4 client name tracking daemon
3  *
4  * Copyright (C) 2011  Red Hat, Jeff Layton <jlayton@redhat.com>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif /* HAVE_CONFIG_H */
25
26 #include <errno.h>
27 #include <event.h>
28 #include <stdbool.h>
29 #include <getopt.h>
30 #include <string.h>
31 #include <sys/stat.h>
32 #include <sys/types.h>
33 #include <fcntl.h>
34 #include <unistd.h>
35
36 #include "xlog.h"
37 #include "nfslib.h"
38 #include "cld.h"
39
40 #ifndef PIPEFS_DIR
41 #define PIPEFS_DIR NFS_STATEDIR "/rpc_pipefs"
42 #endif
43
44 #define DEFAULT_CLD_PATH        PIPEFS_DIR "/nfsd/cld"
45
46 #define UPCALL_VERSION          1
47
48 /* private data structures */
49 struct cld_client {
50         int                     cl_fd;
51         struct event            cl_event;
52         struct cld_msg  cl_msg;
53 };
54
55 /* global variables */
56 static char *pipepath = DEFAULT_CLD_PATH;
57
58 static struct option longopts[] =
59 {
60         { "help", 0, NULL, 'h' },
61         { "foreground", 0, NULL, 'F' },
62         { "debug", 0, NULL, 'd' },
63         { "pipe", 1, NULL, 'p' },
64         { "storagedir", 1, NULL, 's' },
65         { NULL, 0, 0, 0 },
66 };
67
68 /* forward declarations */
69 static void cldcb(int UNUSED(fd), short which, void *data);
70
71 static void
72 usage(char *progname)
73 {
74         printf("%s [ -hFd ] [ -p pipe ] [ -s dir ]\n", progname);
75 }
76
77 static int
78 cld_pipe_open(struct cld_client *clnt)
79 {
80         int fd;
81
82         xlog(D_GENERAL, "%s: opening upcall pipe %s", __func__, pipepath);
83         fd = open(pipepath, O_RDWR, 0);
84         if (fd < 0) {
85                 xlog(L_ERROR, "%s: open of %s failed: %m", __func__, pipepath);
86                 return -errno;
87         }
88
89         if (clnt->cl_event.ev_flags & EVLIST_INIT)
90                 event_del(&clnt->cl_event);
91         if (clnt->cl_fd >= 0)
92                 close(clnt->cl_fd);
93
94         clnt->cl_fd = fd;
95         event_set(&clnt->cl_event, clnt->cl_fd, EV_READ, cldcb, clnt);
96         /* event_add is done by the caller */
97         return 0;
98 }
99
100 static int
101 cld_pipe_init(struct cld_client *clnt)
102 {
103         int ret;
104
105         clnt->cl_fd = -1;
106         ret = cld_pipe_open(clnt);
107         if (ret)
108                 return ret;
109
110         event_add(&clnt->cl_event, NULL);
111         return 0;
112 }
113
114 static void
115 cld_not_implemented(struct cld_client *clnt)
116 {
117         int ret;
118         ssize_t bsize, wsize;
119         struct cld_msg *cmsg = &clnt->cl_msg;
120
121         xlog(D_GENERAL, "%s: downcalling with not implemented error", __func__);
122
123         /* set up reply */
124         cmsg->cm_status = -EOPNOTSUPP;
125
126         bsize = sizeof(*cmsg);
127
128         wsize = atomicio((void *)write, clnt->cl_fd, cmsg, bsize);
129         if (wsize != bsize)
130                 xlog(L_ERROR, "%s: problem writing to cld pipe (%ld): %m",
131                          __func__, wsize);
132
133         /* reopen pipe, just to be sure */
134         ret = cld_pipe_open(clnt);
135         if (ret) {
136                 xlog(L_FATAL, "%s: unable to reopen pipe: %d", __func__, ret);
137                 exit(ret);
138         }
139 }
140
141 static void
142 cld_create(struct cld_client *clnt)
143 {
144         int ret;
145         ssize_t bsize, wsize;
146         struct cld_msg *cmsg = &clnt->cl_msg;
147
148         xlog(D_GENERAL, "%s: create client record.", __func__);
149
150         ret = sqlite_insert_client(cmsg->cm_u.cm_name.cn_id,
151                                    cmsg->cm_u.cm_name.cn_len);
152
153         cmsg->cm_status = ret ? -EREMOTEIO : ret;
154
155         bsize = sizeof(*cmsg);
156
157         xlog(D_GENERAL, "Doing downcall with status %d", cmsg->cm_status);
158         wsize = atomicio((void *)write, clnt->cl_fd, cmsg, bsize);
159         if (wsize != bsize) {
160                 xlog(L_ERROR, "%s: problem writing to cld pipe (%ld): %m",
161                          __func__, wsize);
162                 ret = cld_pipe_open(clnt);
163                 if (ret) {
164                         xlog(L_FATAL, "%s: unable to reopen pipe: %d",
165                                         __func__, ret);
166                         exit(ret);
167                 }
168         }
169 }
170
171 static void
172 cld_remove(struct cld_client *clnt)
173 {
174         int ret;
175         ssize_t bsize, wsize;
176         struct cld_msg *cmsg = &clnt->cl_msg;
177
178         xlog(D_GENERAL, "%s: remove client record.", __func__);
179
180         ret = sqlite_remove_client(cmsg->cm_u.cm_name.cn_id,
181                                    cmsg->cm_u.cm_name.cn_len);
182
183         cmsg->cm_status = ret ? -EREMOTEIO : ret;
184
185         bsize = sizeof(*cmsg);
186
187         xlog(D_GENERAL, "%s: downcall with status %d", __func__,
188                         cmsg->cm_status);
189         wsize = atomicio((void *)write, clnt->cl_fd, cmsg, bsize);
190         if (wsize != bsize) {
191                 xlog(L_ERROR, "%s: problem writing to cld pipe (%ld): %m",
192                          __func__, wsize);
193                 ret = cld_pipe_open(clnt);
194                 if (ret) {
195                         xlog(L_FATAL, "%s: unable to reopen pipe: %d",
196                                         __func__, ret);
197                         exit(ret);
198                 }
199         }
200 }
201
202 static void
203 cld_check(struct cld_client *clnt)
204 {
205         int ret;
206         ssize_t bsize, wsize;
207         struct cld_msg *cmsg = &clnt->cl_msg;
208
209         xlog(D_GENERAL, "%s: check client record", __func__);
210
211         ret = sqlite_check_client(cmsg->cm_u.cm_name.cn_id,
212                                   cmsg->cm_u.cm_name.cn_len);
213
214         /* set up reply */
215         cmsg->cm_status = ret ? -EACCES : ret;
216
217         bsize = sizeof(*cmsg);
218
219         xlog(D_GENERAL, "%s: downcall with status %d", __func__,
220                         cmsg->cm_status);
221         wsize = atomicio((void *)write, clnt->cl_fd, cmsg, bsize);
222         if (wsize != bsize) {
223                 xlog(L_ERROR, "%s: problem writing to cld pipe (%ld): %m",
224                          __func__, wsize);
225                 ret = cld_pipe_open(clnt);
226                 if (ret) {
227                         xlog(L_FATAL, "%s: unable to reopen pipe: %d",
228                                         __func__, ret);
229                         exit(ret);
230                 }
231         }
232 }
233
234 static void
235 cldcb(int UNUSED(fd), short which, void *data)
236 {
237         ssize_t len;
238         struct cld_client *clnt = data;
239         struct cld_msg *cmsg = &clnt->cl_msg;
240
241         if (which != EV_READ)
242                 goto out;
243
244         len = atomicio(read, clnt->cl_fd, cmsg, sizeof(*cmsg));
245         if (len <= 0) {
246                 xlog(L_ERROR, "%s: pipe read failed: %m", __func__);
247                 cld_pipe_open(clnt);
248                 goto out;
249         }
250
251         if (cmsg->cm_vers != UPCALL_VERSION) {
252                 xlog(L_ERROR, "%s: unsupported upcall version: %hu",
253                                 cmsg->cm_vers);
254                 cld_pipe_open(clnt);
255                 goto out;
256         }
257
258         switch(cmsg->cm_cmd) {
259         case Cld_Create:
260                 cld_create(clnt);
261                 break;
262         case Cld_Remove:
263                 cld_remove(clnt);
264                 break;
265         case Cld_Check:
266                 cld_check(clnt);
267                 break;
268         default:
269                 xlog(L_WARNING, "%s: command %u is not yet implemented",
270                                 __func__, cmsg->cm_cmd);
271                 cld_not_implemented(clnt);
272         }
273 out:
274         event_add(&clnt->cl_event, NULL);
275 }
276
277 int
278 main(int argc, char **argv)
279 {
280         char arg;
281         int rc = 0;
282         bool foreground = false;
283         char *progname;
284         char *storagedir = NULL;
285         struct cld_client clnt;
286
287         memset(&clnt, 0, sizeof(clnt));
288
289         progname = strdup(basename(argv[0]));
290         if (!progname) {
291                 fprintf(stderr, "%s: unable to allocate memory.\n", argv[0]);
292                 return 1;
293         }
294
295         event_init();
296         xlog_syslog(0);
297         xlog_stderr(1);
298
299         /* process command-line options */
300         while ((arg = getopt_long(argc, argv, "hdFp:s:", longopts,
301                                   NULL)) != EOF) {
302                 switch (arg) {
303                 case 'd':
304                         xlog_config(D_ALL, 1);
305                         break;
306                 case 'F':
307                         foreground = true;
308                         break;
309                 case 'p':
310                         pipepath = optarg;
311                         break;
312                 case 's':
313                         storagedir = optarg;
314                         break;
315                 default:
316                         usage(progname);
317                         return 0;
318                 }
319         }
320
321
322         xlog_open(progname);
323         if (!foreground) {
324                 xlog_syslog(1);
325                 xlog_stderr(0);
326                 rc = daemon(0, 0);
327                 if (rc) {
328                         xlog(L_ERROR, "Unable to daemonize: %m");
329                         goto out;
330                 }
331         }
332
333         /* set up storage db */
334         rc = sqlite_maindb_init(storagedir);
335         if (rc) {
336                 xlog(L_ERROR, "Failed to open main database: %d", rc);
337                 goto out;
338         }
339
340         /* set up event handler */
341         rc = cld_pipe_init(&clnt);
342         if (rc)
343                 goto out;
344
345         xlog(D_GENERAL, "%s: Starting event dispatch handler.", __func__);
346         rc = event_dispatch();
347         if (rc < 0)
348                 xlog(L_ERROR, "%s: event_dispatch failed: %m", __func__);
349
350         close(clnt.cl_fd);
351 out:
352         free(progname);
353         return rc;
354 }