ovsdb-server: Remove unixctl transaction support.
[sliver-openvswitch.git] / ovsdb / ovsdb-server.c
1 /* Copyright (c) 2009 Nicira Networks
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <config.h>
17
18 #include "ovsdb.h"
19
20 #include <errno.h>
21 #include <getopt.h>
22 #include <signal.h>
23
24 #include "command-line.h"
25 #include "daemon.h"
26 #include "fault.h"
27 #include "json.h"
28 #include "jsonrpc.h"
29 #include "jsonrpc-server.h"
30 #include "leak-checker.h"
31 #include "list.h"
32 #include "ovsdb-error.h"
33 #include "poll-loop.h"
34 #include "process.h"
35 #include "stream.h"
36 #include "svec.h"
37 #include "timeval.h"
38 #include "trigger.h"
39 #include "util.h"
40 #include "unixctl.h"
41
42 #include "vlog.h"
43 #define THIS_MODULE VLM_ovsdb_server
44
45 static const struct jsonrpc_server_cbs ovsdb_jsonrpc_cbs;
46
47 static void parse_options(int argc, char *argv[], char **file_namep,
48                           struct svec *active, struct svec *passive);
49 static void usage(void) NO_RETURN;
50
51 int
52 main(int argc, char *argv[])
53 {
54     struct unixctl_server *unixctl;
55     struct ovsdb_jsonrpc_server *jsonrpc;
56     struct svec active, passive;
57     struct ovsdb_error *error;
58     struct ovsdb *db;
59     char *file_name;
60     int retval;
61
62     set_program_name(argv[0]);
63     register_fault_handlers();
64     time_init();
65     vlog_init();
66     signal(SIGPIPE, SIG_IGN);
67     process_init();
68
69     parse_options(argc, argv, &file_name, &active, &passive);
70
71     error = ovsdb_open(file_name, false, &db);
72     if (error) {
73         ovs_fatal(0, "%s", ovsdb_error_to_string(error));
74     }
75
76     retval = ovsdb_jsonrpc_server_create(db, &active, &passive, &jsonrpc);
77     if (retval) {
78         ovs_fatal(retval, "failed to initialize JSON-RPC server for OVSDB");
79     }
80     svec_destroy(&active);
81     svec_destroy(&passive);
82
83     die_if_already_running();
84     daemonize();
85
86     retval = unixctl_server_create(NULL, &unixctl);
87     if (retval) {
88         ovs_fatal(retval, "could not listen for control connections");
89     }
90
91     for (;;) {
92         ovsdb_jsonrpc_server_run(jsonrpc);
93         unixctl_server_run(unixctl);
94         ovsdb_trigger_run(db, time_msec());
95
96         ovsdb_jsonrpc_server_wait(jsonrpc);
97         unixctl_server_wait(unixctl);
98         ovsdb_trigger_wait(db, time_msec());
99         poll_block();
100     }
101
102     return 0;
103 }
104
105 static void
106 parse_options(int argc, char *argv[], char **file_namep,
107               struct svec *active, struct svec *passive)
108 {
109     enum {
110         OPT_DUMMY = UCHAR_MAX + 1,
111         OPT_CONNECT,
112         OPT_LISTEN,
113         VLOG_OPTION_ENUMS,
114         LEAK_CHECKER_OPTION_ENUMS
115     };
116     static struct option long_options[] = {
117         {"connect",     required_argument, 0, OPT_CONNECT},
118         {"listen",      required_argument, 0, OPT_LISTEN},
119         {"help",        no_argument, 0, 'h'},
120         {"version",     no_argument, 0, 'V'},
121         DAEMON_LONG_OPTIONS,
122         VLOG_LONG_OPTIONS,
123         LEAK_CHECKER_LONG_OPTIONS,
124         {0, 0, 0, 0},
125     };
126     char *short_options = long_options_to_short_options(long_options);
127
128     svec_init(active);
129     svec_init(passive);
130     for (;;) {
131         int c;
132
133         c = getopt_long(argc, argv, short_options, long_options, NULL);
134         if (c == -1) {
135             break;
136         }
137
138         switch (c) {
139         case OPT_CONNECT:
140             svec_add(active, optarg);
141             break;
142
143         case OPT_LISTEN:
144             svec_add(passive, optarg);
145             break;
146
147         case 'h':
148             usage();
149
150         case 'V':
151             OVS_PRINT_VERSION(0, 0);
152             exit(EXIT_SUCCESS);
153
154         VLOG_OPTION_HANDLERS
155         DAEMON_OPTION_HANDLERS
156         LEAK_CHECKER_OPTION_HANDLERS
157
158         case '?':
159             exit(EXIT_FAILURE);
160
161         default:
162             abort();
163         }
164     }
165     free(short_options);
166
167     argc -= optind;
168     argv += optind;
169
170     if (argc != 1) {
171         ovs_fatal(0, "database file is only non-option argument; "
172                 "use --help for usage");
173     }
174
175     *file_namep = argv[0];
176 }
177
178 static void
179 usage(void)
180 {
181     printf("%s: Open vSwitch database server\n"
182            "usage: %s [OPTIONS] DATABASE\n"
183            "where DATABASE is a database file in ovsdb format.\n",
184            program_name, program_name);
185     printf("\nJSON-RPC options (may be specified any number of times):\n"
186            "  --connect=REMOTE        make active connection to REMOTE\n"
187            "  --listen=LOCAL          passively listen on LOCAL\n");
188     stream_usage("JSON-RPC", true, true);
189     daemon_usage();
190     vlog_usage();
191     printf("\nOther options:\n"
192            "  -h, --help              display this help message\n"
193            "  -V, --version           display version information\n");
194     leak_checker_usage();
195     exit(EXIT_SUCCESS);
196 }