1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2010 Brian Aker All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following disclaimer
17 * in the documentation and/or other materials provided with the
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include <libmemcached/common.h>
39 const char * memcached_lib_version(void)
41 return LIBMEMCACHED_VERSION_STRING
;
44 static inline memcached_return_t
memcached_version_textual(memcached_st
*ptr
)
46 libmemcached_io_vector_st vector
[]=
48 { memcached_literal_param("version\r\n") },
50 memcached_return_t rc
= MEMCACHED_SUCCESS
;
52 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
54 memcached_server_write_instance_st instance
= memcached_server_instance_fetch(ptr
, x
);
56 // Optimization, we only fetch version once.
57 if (instance
->major_version
!= UINT8_MAX
)
62 memcached_return_t rrc
= memcached_vdo(instance
, vector
, 1, true);
63 if (memcached_failed(rrc
))
65 (void)memcached_set_error(*instance
, rrc
, MEMCACHED_AT
);
66 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
67 rc
= MEMCACHED_SOME_ERRORS
;
71 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
72 rrc
= memcached_response(instance
, buffer
, sizeof(buffer
), NULL
);
73 if (memcached_failed(rrc
))
75 memcached_set_error(*instance
, rrc
, MEMCACHED_AT
);
76 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
77 rc
= MEMCACHED_SOME_ERRORS
;
81 /* Find the space, and then move one past it to copy version */
82 char *response_ptr
= index(buffer
, ' ');
85 long int version
= strtol(response_ptr
, (char **)NULL
, 10);
86 if (version
== LONG_MIN
or version
== LONG_MAX
or errno
== EINVAL
or version
> UINT8_MAX
or version
== 0)
88 memcached_set_error(*instance
, MEMCACHED_PROTOCOL_ERROR
, MEMCACHED_AT
, memcached_literal_param("strtol() failed to parse major version"));
89 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
90 rc
= MEMCACHED_SOME_ERRORS
;
93 instance
->major_version
= uint8_t(version
);
95 response_ptr
= index(response_ptr
, '.');
98 version
= strtol(response_ptr
, (char **)NULL
, 10);
99 if (version
== LONG_MIN
or version
== LONG_MAX
or errno
== EINVAL
or version
> UINT8_MAX
)
101 memcached_set_error(*instance
, MEMCACHED_PROTOCOL_ERROR
, MEMCACHED_AT
, memcached_literal_param("strtol() failed to parse minor version"));
102 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
103 rc
= MEMCACHED_SOME_ERRORS
;
106 instance
->minor_version
= uint8_t(version
);
108 response_ptr
= index(response_ptr
, '.');
111 version
= strtol(response_ptr
, (char **)NULL
, 10);
112 if (version
== LONG_MIN
or version
== LONG_MAX
or errno
== EINVAL
or version
> UINT8_MAX
)
114 memcached_set_error(*instance
, MEMCACHED_PROTOCOL_ERROR
, MEMCACHED_AT
, memcached_literal_param("strtol() failed to parse micro version"));
115 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
116 rc
= MEMCACHED_SOME_ERRORS
;
119 instance
->micro_version
= uint8_t(version
);
125 static inline memcached_return_t
memcached_version_binary(memcached_st
*ptr
)
127 protocol_binary_request_version request
= {};
128 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
129 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_VERSION
;
130 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
132 libmemcached_io_vector_st vector
[]=
134 { request
.bytes
, sizeof(request
.bytes
) }
137 memcached_return_t rc
= MEMCACHED_SUCCESS
;
138 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
140 memcached_server_write_instance_st instance
= memcached_server_instance_fetch(ptr
, x
);
142 if (instance
->major_version
!= UINT8_MAX
)
147 memcached_return_t rrc
= memcached_vdo(instance
, vector
, 1, true);
148 if (memcached_failed(rrc
))
150 memcached_io_reset(instance
);
151 rc
= MEMCACHED_SOME_ERRORS
;
156 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
158 memcached_server_write_instance_st instance
= memcached_server_instance_fetch(ptr
, x
);
160 if (instance
->major_version
!= UINT8_MAX
)
165 if (memcached_server_response_count(instance
) > 0)
170 memcached_return_t rrc
= memcached_response(instance
, buffer
, sizeof(buffer
), NULL
);
171 if (memcached_failed(rrc
))
173 memcached_io_reset(instance
);
174 rc
= MEMCACHED_SOME_ERRORS
;
178 long int version
= strtol(buffer
, &p
, 10);
179 if (version
== LONG_MIN
or version
== LONG_MAX
or errno
== EINVAL
or version
> UINT8_MAX
or version
== 0)
181 memcached_set_error(*instance
, MEMCACHED_PROTOCOL_ERROR
, MEMCACHED_AT
, memcached_literal_param("strtol() failed to parse major version"));
182 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
183 rc
= MEMCACHED_SOME_ERRORS
;
186 instance
->major_version
= uint8_t(version
);
188 version
= strtol(p
+1, &p
, 10);
189 if (version
== LONG_MIN
or version
== LONG_MAX
or errno
== EINVAL
or version
> UINT8_MAX
)
191 memcached_set_error(*instance
, MEMCACHED_PROTOCOL_ERROR
, MEMCACHED_AT
, memcached_literal_param("strtol() failed to parse micro version"));
192 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
193 rc
= MEMCACHED_SOME_ERRORS
;
196 instance
->minor_version
= uint8_t(version
);
198 version
= strtol(p
+ 1, NULL
, 10);
201 memcached_set_error(*instance
, MEMCACHED_PROTOCOL_ERROR
, MEMCACHED_AT
, memcached_literal_param("strtol() failed to parse micro version"));
202 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
203 rc
= MEMCACHED_SOME_ERRORS
;
206 instance
->micro_version
= uint8_t(version
);
213 memcached_return_t
memcached_version(memcached_st
*ptr
)
215 memcached_return_t rc
;
216 if (memcached_failed(rc
= initialize_query(ptr
, true)))
221 if (memcached_is_udp(ptr
))
223 return MEMCACHED_NOT_SUPPORTED
;
226 if (memcached_is_binary(ptr
))
228 rc
= memcached_version_binary(ptr
);
232 rc
= memcached_version_textual(ptr
);