]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/nfsdcld/nfsdcld.c
c58801c4675d5a739cf2b6233f4e0d3bcdf9a970
[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 cldcb(int UNUSED(fd), short which, void *data)
173 {
174         ssize_t len;
175         struct cld_client *clnt = data;
176         struct cld_msg *cmsg = &clnt->cl_msg;
177
178         if (which != EV_READ)
179                 goto out;
180
181         len = atomicio(read, clnt->cl_fd, cmsg, sizeof(*cmsg));
182         if (len <= 0) {
183                 xlog(L_ERROR, "%s: pipe read failed: %m", __func__);
184                 cld_pipe_open(clnt);
185                 goto out;
186         }
187
188         if (cmsg->cm_vers != UPCALL_VERSION) {
189                 xlog(L_ERROR, "%s: unsupported upcall version: %hu",
190                                 cmsg->cm_vers);
191                 cld_pipe_open(clnt);
192                 goto out;
193         }
194
195         switch(cmsg->cm_cmd) {
196         case Cld_Create:
197                 cld_create(clnt);
198                 break;
199         default:
200                 xlog(L_WARNING, "%s: command %u is not yet implemented",
201                                 __func__, cmsg->cm_cmd);
202                 cld_not_implemented(clnt);
203         }
204 out:
205         event_add(&clnt->cl_event, NULL);
206 }
207
208 int
209 main(int argc, char **argv)
210 {
211         char arg;
212         int rc = 0;
213         bool foreground = false;
214         char *progname;
215         char *storagedir = NULL;
216         struct cld_client clnt;
217
218         memset(&clnt, 0, sizeof(clnt));
219
220         progname = strdup(basename(argv[0]));
221         if (!progname) {
222                 fprintf(stderr, "%s: unable to allocate memory.\n", argv[0]);
223                 return 1;
224         }
225
226         event_init();
227         xlog_syslog(0);
228         xlog_stderr(1);
229
230         /* process command-line options */
231         while ((arg = getopt_long(argc, argv, "hdFp:s:", longopts,
232                                   NULL)) != EOF) {
233                 switch (arg) {
234                 case 'd':
235                         xlog_config(D_ALL, 1);
236                         break;
237                 case 'F':
238                         foreground = true;
239                         break;
240                 case 'p':
241                         pipepath = optarg;
242                         break;
243                 case 's':
244                         storagedir = optarg;
245                         break;
246                 default:
247                         usage(progname);
248                         return 0;
249                 }
250         }
251
252
253         xlog_open(progname);
254         if (!foreground) {
255                 xlog_syslog(1);
256                 xlog_stderr(0);
257                 rc = daemon(0, 0);
258                 if (rc) {
259                         xlog(L_ERROR, "Unable to daemonize: %m");
260                         goto out;
261                 }
262         }
263
264         /* set up storage db */
265         rc = sqlite_maindb_init(storagedir);
266         if (rc) {
267                 xlog(L_ERROR, "Failed to open main database: %d", rc);
268                 goto out;
269         }
270
271         /* set up event handler */
272         rc = cld_pipe_init(&clnt);
273         if (rc)
274                 goto out;
275
276         xlog(D_GENERAL, "%s: Starting event dispatch handler.", __func__);
277         rc = event_dispatch();
278         if (rc < 0)
279                 xlog(L_ERROR, "%s: event_dispatch failed: %m", __func__);
280
281         close(clnt.cl_fd);
282 out:
283         free(progname);
284         return rc;
285 }