/usr/include/varnish/vcli.h is in libvarnishapi-dev 4.1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | /*-
* Copyright (c) 2006 Verdens Gang AS
* Copyright (c) 2006-2011 Varnish Software AS
* All rights reserved.
*
* Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* Public definition of the CLI protocol, part of the published Varnish-API.
*
* The overall structure of the protocol is a command-line like
* "command+arguments" request and a IETF style "number + string" response.
*
* Arguments can contain arbitrary sequences of bytes which are encoded
* in back-slash notation in double-quoted, if necessary.
*/
/*
* These macros define the common data for requests in the CLI protocol.
* The fields are:
* const char * request_name
* const char * request_syntax (for short help)
* const char * request_help (for long help)
* unsigned minimum_arguments
* unsigned maximum_arguments
*/
#define CLI_BAN \
"ban", \
"ban <field> <operator> <arg> [&& <field> <oper> <arg> ...]", \
"\tMark obsolete all objects where all the conditions match.", \
3, UINT_MAX
#define CLI_BAN_LIST \
"ban.list", \
"ban.list", \
"\tList the active bans.", \
0, 0
#define CLI_VCL_LOAD \
"vcl.load", \
"vcl.load <configname> <filename> [auto|cold|warm]", \
"\tCompile and load the VCL file under the name provided.", \
2, 3
#define CLI_VCL_INLINE \
"vcl.inline", \
"vcl.inline <configname> <quoted_VCLstring> [auto|cold|warm]", \
"\tCompile and load the VCL data under the name provided.", \
2, 3
#define CLI_VCL_STATE \
"vcl.state", \
"vcl.state <configname> [auto|cold|warm]", \
"\tForce the state of the named configuration.", \
2, 2
#define CLI_VCL_DISCARD \
"vcl.discard", \
"vcl.discard <configname>", \
"\tUnload the named configuration (when possible).", \
1, 1
#define CLI_VCL_LIST \
"vcl.list", \
"vcl.list", \
"\tList all loaded configuration.", \
0, 0
#define CLI_VCL_SHOW \
"vcl.show", \
"vcl.show [-v] <configname>", \
"\tDisplay the source code for the specified configuration.", \
1, 2
#define CLI_VCL_USE \
"vcl.use", \
"vcl.use <configname>", \
"\tSwitch to the named configuration immediately.", \
1, 1
#define CLI_PARAM_SHOW \
"param.show", \
"param.show [-l] [<param>]", \
"\tShow parameters and their values.", \
0, 2
#define CLI_PARAM_SET \
"param.set", \
"param.set <param> <value>", \
"\tSet parameter value.", \
2,2
#define CLI_SERVER_STOP \
"stop", \
"stop", \
"\tStop the Varnish cache process.", \
0, 0
#define CLI_SERVER_START \
"start", \
"start", \
"\tStart the Varnish cache process.", \
0, 0
#define CLI_PING \
"ping", \
"ping [<timestamp>]", \
"\tKeep connection alive.", \
0, 1
#define CLI_HELP \
"help", \
"help [<command>]", \
"\tShow command/protocol help.", \
0, 1
#define CLI_QUIT \
"quit", \
"quit", \
"\tClose connection.", \
0, 0
#define CLI_SERVER_STATUS \
"status", \
"status", \
"\tCheck status of Varnish cache process.", \
0, 0
#define CLI_BANNER \
"banner", \
"banner", \
"\tPrint welcome banner.", \
0, 0
#define CLI_AUTH \
"auth", \
"auth <response>", \
"\tAuthenticate.", \
1, 1
#define CLI_PANIC_SHOW \
"panic.show", \
"panic.show", \
"\tReturn the last panic, if any.", \
0, 0
#define CLI_PANIC_CLEAR \
"panic.clear", \
"panic.clear [-z]", \
"\tClear the last panic, if any. -z will clear related varnishstat counter(s)", \
0, 1
/*
* Status/return codes in the CLI protocol
*/
enum VCLI_status_e {
CLIS_SYNTAX = 100,
CLIS_UNKNOWN = 101,
CLIS_UNIMPL = 102,
CLIS_TOOFEW = 104,
CLIS_TOOMANY = 105,
CLIS_PARAM = 106,
CLIS_AUTH = 107,
CLIS_OK = 200,
CLIS_TRUNCATED = 201,
CLIS_CANT = 300,
CLIS_COMMS = 400,
CLIS_CLOSE = 500
};
/* Length of first line of response */
#define CLI_LINE0_LEN 13
#define CLI_AUTH_RESPONSE_LEN 64 /* 64 hex + NUL */
#if !defined(VCLI_PROTOCOL_ONLY)
/* Convenience functions exported in libvarnishapi */
int VCLI_WriteResult(int fd, unsigned status, const char *result);
int VCLI_ReadResult(int fd, unsigned *status, char **ptr, double tmo);
void VCLI_AuthResponse(int S_fd, const char *challenge,
char reponse[CLI_AUTH_RESPONSE_LEN + 1]);
#endif
|