chiark / gitweb /
fsckd: free client event source before we close its fd
[elogind.git] / src / udev / udevadm-settle.c
1 /*
2  * Copyright (C) 2006-2009 Kay Sievers <kay@vrfy.org>
3  * Copyright (C) 2009 Canonical Ltd.
4  * Copyright (C) 2009 Scott James Remnant <scott@netsplit.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <stdlib.h>
21 #include <stddef.h>
22 #include <string.h>
23 #include <stdio.h>
24 #include <unistd.h>
25 #include <errno.h>
26 #include <getopt.h>
27 #include <poll.h>
28
29 #include "udev.h"
30 #include "util.h"
31
32 static void help(void) {
33         printf("%s settle OPTIONS\n\n"
34                "Wait for pending udev events.\n\n"
35                "  -h --help                 Show this help\n"
36                "     --version              Show package version\n"
37                "  -t --timeout=SECONDS      Maximum time to wait for events\n"
38                "  -E --exit-if-exists=FILE  Stop waiting if file exists\n"
39                , program_invocation_short_name);
40 }
41
42 static int adm_settle(struct udev *udev, int argc, char *argv[]) {
43         static const struct option options[] = {
44                 { "timeout",        required_argument, NULL, 't' },
45                 { "exit-if-exists", required_argument, NULL, 'E' },
46                 { "help",           no_argument,       NULL, 'h' },
47                 { "seq-start",      required_argument, NULL, 's' }, /* removed */
48                 { "seq-end",        required_argument, NULL, 'e' }, /* removed */
49                 { "quiet",          no_argument,       NULL, 'q' }, /* removed */
50                 {}
51         };
52         const char *exists = NULL;
53         unsigned int timeout = 120;
54         struct pollfd pfd[1] = { {.fd = -1}, };
55         int c;
56         struct udev_queue *queue;
57         int rc = EXIT_FAILURE;
58
59         while ((c = getopt_long(argc, argv, "t:E:hs:e:q", options, NULL)) >= 0) {
60                 switch (c) {
61
62                 case 't': {
63                         int r;
64
65                         r = safe_atou(optarg, &timeout);
66                         if (r < 0) {
67                                 fprintf(stderr, "Invalid timeout value '%s': %s\n",
68                                         optarg, strerror(-r));
69                                 exit(EXIT_FAILURE);
70                         };
71                         break;
72                 }
73
74                 case 'E':
75                         exists = optarg;
76                         break;
77
78                 case 'h':
79                         help();
80                         return EXIT_SUCCESS;
81
82                 case 's':
83                 case 'e':
84                 case 'q':
85                         log_info("Option -%c no longer supported.", c);
86                         return EXIT_FAILURE;
87
88                 case '?':
89                         return EXIT_FAILURE;
90
91                 default:
92                         assert_not_reached("Unknown argument");
93                 }
94         }
95
96         if (optind < argc) {
97                 fprintf(stderr, "Extraneous argument: '%s'\n", argv[optind]);
98                 return EXIT_FAILURE;
99         }
100
101         /* guarantee that the udev daemon isn't pre-processing */
102         if (getuid() == 0) {
103                 struct udev_ctrl *uctrl;
104
105                 uctrl = udev_ctrl_new(udev);
106                 if (uctrl != NULL) {
107                         if (udev_ctrl_send_ping(uctrl, timeout) < 0) {
108                                 log_debug("no connection to daemon");
109                                 udev_ctrl_unref(uctrl);
110                                 return EXIT_SUCCESS;
111                         }
112                         udev_ctrl_unref(uctrl);
113                 }
114         }
115
116         queue = udev_queue_new(udev);
117         if (!queue) {
118                 log_error("unable to get udev queue");
119                 return EXIT_FAILURE;
120         }
121
122         pfd[0].events = POLLIN;
123         pfd[0].fd = udev_queue_get_fd(queue);
124         if (pfd[0].fd < 0) {
125                 log_debug("queue is empty, nothing to watch");
126                 rc = EXIT_SUCCESS;
127                 goto out;
128         }
129
130         for (;;) {
131                 if (exists && access(exists, F_OK) >= 0) {
132                         rc = EXIT_SUCCESS;
133                         break;
134                 }
135
136                 /* exit if queue is empty */
137                 if (udev_queue_get_queue_is_empty(queue)) {
138                         rc = EXIT_SUCCESS;
139                         break;
140                 }
141
142                 /* wake up when queue is empty */
143                 if (poll(pfd, 1, MSEC_PER_SEC) > 0 && pfd[0].revents & POLLIN)
144                         udev_queue_flush(queue);
145         }
146
147 out:
148         udev_queue_unref(queue);
149         return rc;
150 }
151
152 const struct udevadm_cmd udevadm_settle = {
153         .name = "settle",
154         .cmd = adm_settle,
155         .help = "Wait for pending udev events",
156 };