api: enforce vla is last and fixed string type
[vpp.git] / src / plugins / http_static / http_static.c
1 /*
2  * http_static.c - skeleton vpp engine plug-in
3  *
4  * Copyright (c) <current-year> <your-organization>
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <vnet/vnet.h>
19 #include <vnet/plugin/plugin.h>
20 #include <http_static/http_static.h>
21
22 #include <vlibapi/api.h>
23 #include <vlibmemory/api.h>
24 #include <vpp/app/version.h>
25
26 /* define message IDs */
27 #include <http_static/http_static_msg_enum.h>
28
29 #include <vpp/api/types.h>
30
31 /* define message structures */
32 #define vl_typedefs
33 #include <http_static/http_static_all_api_h.h>
34 #undef vl_typedefs
35
36 /* define generated endian-swappers */
37 #define vl_endianfun
38 #include <http_static/http_static_all_api_h.h>
39 #undef vl_endianfun
40
41 /* instantiate all the print functions we know about */
42 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
43 #define vl_printfun
44 #include <http_static/http_static_all_api_h.h>
45 #undef vl_printfun
46
47 /* Get the API version number */
48 #define vl_api_version(n,v) static u32 api_version=(v);
49 #include <http_static/http_static_all_api_h.h>
50 #undef vl_api_version
51
52 #define REPLY_MSG_ID_BASE hmp->msg_id_base
53 #include <vlibapi/api_helper_macros.h>
54
55 http_static_main_t http_static_main;
56
57 /* List of message types that this plugin understands */
58
59 #define foreach_http_static_plugin_api_msg                           \
60 _(HTTP_STATIC_ENABLE, http_static_enable)
61
62 /* API message handler */
63 static void vl_api_http_static_enable_t_handler
64   (vl_api_http_static_enable_t * mp)
65 {
66   vl_api_http_static_enable_reply_t *rmp;
67   http_static_main_t *hmp = &http_static_main;
68   int rv;
69
70   mp->uri[ARRAY_LEN (mp->uri) - 1] = 0;
71   mp->www_root[ARRAY_LEN (mp->www_root) - 1] = 0;
72
73   rv = http_static_server_enable_api
74     (ntohl (mp->fifo_size),
75      ntohl (mp->cache_size_limit),
76      ntohl (mp->prealloc_fifos),
77      ntohl (mp->private_segment_size), mp->www_root, mp->uri);
78
79   REPLY_MACRO (VL_API_HTTP_STATIC_ENABLE_REPLY);
80 }
81
82 /* Set up the API message handling tables */
83 static clib_error_t *
84 http_static_plugin_api_hookup (vlib_main_t * vm)
85 {
86   http_static_main_t *hmp = &http_static_main;
87 #define _(N,n)                                                  \
88     vl_msg_api_set_handlers((VL_API_##N + hmp->msg_id_base),     \
89                            #n,                                  \
90                            vl_api_##n##_t_handler,              \
91                            vl_noop_handler,                     \
92                            vl_api_##n##_t_endian,               \
93                            vl_api_##n##_t_print,                \
94                            sizeof(vl_api_##n##_t), 1);
95   foreach_http_static_plugin_api_msg;
96 #undef _
97
98   return 0;
99 }
100
101 #define vl_msg_name_crc_list
102 #include <http_static/http_static_all_api_h.h>
103 #undef vl_msg_name_crc_list
104
105 static void
106 setup_message_id_table (http_static_main_t * hmp, api_main_t * am)
107 {
108 #define _(id,n,crc)   vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + hmp->msg_id_base);
109   foreach_vl_msg_name_crc_http_static;
110 #undef _
111 }
112
113 static clib_error_t *
114 http_static_init (vlib_main_t * vm)
115 {
116   http_static_main_t *hmp = &http_static_main;
117   clib_error_t *error = 0;
118   u8 *name;
119
120   hmp->vlib_main = vm;
121   hmp->vnet_main = vnet_get_main ();
122
123   name = format (0, "http_static_%08x%c", api_version, 0);
124
125   /* Ask for a correctly-sized block of API message decode slots */
126   hmp->msg_id_base = vl_msg_api_get_msg_ids
127     ((char *) name, VL_MSG_FIRST_AVAILABLE);
128
129   error = http_static_plugin_api_hookup (vm);
130
131   /* Add our API messages to the global name_crc hash table */
132   setup_message_id_table (hmp, &api_main);
133
134   vec_free (name);
135
136   return error;
137 }
138
139 VLIB_INIT_FUNCTION (http_static_init);
140
141 /* *INDENT-OFF* */
142 VLIB_PLUGIN_REGISTER () =
143 {
144   .version = VPP_BUILD_VER,
145   .description = "HTTP Static Server"
146 };
147 /* *INDENT-ON* */
148
149 /*
150  * fd.io coding-style-patch-verification: ON
151  *
152  * Local Variables:
153  * eval: (c-set-style "gnu")
154  * End:
155  */