]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/nfsdcld/nfsdcld.c
a6c5239976d43e49e02baa4e23e58558591810af
[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 cldcb(int UNUSED(fd), short which, void *data)
204 {
205         ssize_t len;
206         struct cld_client *clnt = data;
207         struct cld_msg *cmsg = &clnt->cl_msg;
208
209         if (which != EV_READ)
210                 goto out;
211
212         len = atomicio(read, clnt->cl_fd, cmsg, sizeof(*cmsg));
213         if (len <= 0) {
214                 xlog(L_ERROR, "%s: pipe read failed: %m", __func__);
215                 cld_pipe_open(clnt);
216                 goto out;
217         }
218
219         if (cmsg->cm_vers != UPCALL_VERSION) {
220                 xlog(L_ERROR, "%s: unsupported upcall version: %hu",
221                                 cmsg->cm_vers);
222                 cld_pipe_open(clnt);
223                 goto out;
224         }
225
226         switch(cmsg->cm_cmd) {
227         case Cld_Create:
228                 cld_create(clnt);
229                 break;
230         case Cld_Remove:
231                 cld_remove(clnt);
232                 break;
233         default:
234                 xlog(L_WARNING, "%s: command %u is not yet implemented",
235                                 __func__, cmsg->cm_cmd);
236                 cld_not_implemented(clnt);
237         }
238 out:
239         event_add(&clnt->cl_event, NULL);
240 }
241
242 int
243 main(int argc, char **argv)
244 {
245         char arg;
246         int rc = 0;
247         bool foreground = false;
248         char *progname;
249         char *storagedir = NULL;
250         struct cld_client clnt;
251
252         memset(&clnt, 0, sizeof(clnt));
253
254         progname = strdup(basename(argv[0]));
255         if (!progname) {
256                 fprintf(stderr, "%s: unable to allocate memory.\n", argv[0]);
257                 return 1;
258         }
259
260         event_init();
261         xlog_syslog(0);
262         xlog_stderr(1);
263
264         /* process command-line options */
265         while ((arg = getopt_long(argc, argv, "hdFp:s:", longopts,
266                                   NULL)) != EOF) {
267                 switch (arg) {
268                 case 'd':
269                         xlog_config(D_ALL, 1);
270                         break;
271                 case 'F':
272                         foreground = true;
273                         break;
274                 case 'p':
275                         pipepath = optarg;
276                         break;
277                 case 's':
278                         storagedir = optarg;
279                         break;
280                 default:
281                         usage(progname);
282                         return 0;
283                 }
284         }
285
286
287         xlog_open(progname);
288         if (!foreground) {
289                 xlog_syslog(1);
290                 xlog_stderr(0);
291                 rc = daemon(0, 0);
292                 if (rc) {
293                         xlog(L_ERROR, "Unable to daemonize: %m");
294                         goto out;
295                 }
296         }
297
298         /* set up storage db */
299         rc = sqlite_maindb_init(storagedir);
300         if (rc) {
301                 xlog(L_ERROR, "Failed to open main database: %d", rc);
302                 goto out;
303         }
304
305         /* set up event handler */
306         rc = cld_pipe_init(&clnt);
307         if (rc)
308                 goto out;
309
310         xlog(D_GENERAL, "%s: Starting event dispatch handler.", __func__);
311         rc = event_dispatch();
312         if (rc < 0)
313                 xlog(L_ERROR, "%s: event_dispatch failed: %m", __func__);
314
315         close(clnt.cl_fd);
316 out:
317         free(progname);
318         return rc;
319 }