3 /*-----------------------------------------------------------------------------
5 *----------------------------------------------------------------------------*/
7 int yesnotoi(char *s
) {
8 if (!strcasecmp(s
,"yes")) return 1;
9 else if (!strcasecmp(s
,"no")) return 0;
13 void appendServerSaveParams(time_t seconds
, int changes
) {
14 server
.saveparams
= zrealloc(server
.saveparams
,sizeof(struct saveparam
)*(server
.saveparamslen
+1));
15 server
.saveparams
[server
.saveparamslen
].seconds
= seconds
;
16 server
.saveparams
[server
.saveparamslen
].changes
= changes
;
17 server
.saveparamslen
++;
20 void resetServerSaveParams() {
21 zfree(server
.saveparams
);
22 server
.saveparams
= NULL
;
23 server
.saveparamslen
= 0;
26 void loadServerConfigFromString(char *config
) {
28 int linenum
= 0, totlines
, i
;
31 lines
= sdssplitlen(config
,strlen(config
),"\n",1,&totlines
);
33 for (i
= 0; i
< totlines
; i
++) {
38 lines
[i
] = sdstrim(lines
[i
]," \t\r\n");
40 /* Skip comments and blank lines*/
41 if (lines
[i
][0] == '#' || lines
[i
][0] == '\0') continue;
43 /* Split into arguments */
44 argv
= sdssplitargs(lines
[i
],&argc
);
47 /* Execute config directives */
48 if (!strcasecmp(argv
[0],"timeout") && argc
== 2) {
49 server
.maxidletime
= atoi(argv
[1]);
50 if (server
.maxidletime
< 0) {
51 err
= "Invalid timeout value"; goto loaderr
;
53 } else if (!strcasecmp(argv
[0],"port") && argc
== 2) {
54 server
.port
= atoi(argv
[1]);
55 if (server
.port
< 0 || server
.port
> 65535) {
56 err
= "Invalid port"; goto loaderr
;
58 } else if (!strcasecmp(argv
[0],"bind") && argc
== 2) {
59 server
.bindaddr
= zstrdup(argv
[1]);
60 } else if (!strcasecmp(argv
[0],"unixsocket") && argc
== 2) {
61 server
.unixsocket
= zstrdup(argv
[1]);
62 } else if (!strcasecmp(argv
[0],"unixsocketperm") && argc
== 2) {
64 server
.unixsocketperm
= (mode_t
)strtol(argv
[1], NULL
, 8);
65 if (errno
|| server
.unixsocketperm
> 0777) {
66 err
= "Invalid socket file permissions"; goto loaderr
;
68 } else if (!strcasecmp(argv
[0],"save") && argc
== 3) {
69 int seconds
= atoi(argv
[1]);
70 int changes
= atoi(argv
[2]);
71 if (seconds
< 1 || changes
< 0) {
72 err
= "Invalid save parameters"; goto loaderr
;
74 appendServerSaveParams(seconds
,changes
);
75 } else if (!strcasecmp(argv
[0],"dir") && argc
== 2) {
76 if (chdir(argv
[1]) == -1) {
77 redisLog(REDIS_WARNING
,"Can't chdir to '%s': %s",
78 argv
[1], strerror(errno
));
81 } else if (!strcasecmp(argv
[0],"loglevel") && argc
== 2) {
82 if (!strcasecmp(argv
[1],"debug")) server
.verbosity
= REDIS_DEBUG
;
83 else if (!strcasecmp(argv
[1],"verbose")) server
.verbosity
= REDIS_VERBOSE
;
84 else if (!strcasecmp(argv
[1],"notice")) server
.verbosity
= REDIS_NOTICE
;
85 else if (!strcasecmp(argv
[1],"warning")) server
.verbosity
= REDIS_WARNING
;
87 err
= "Invalid log level. Must be one of debug, notice, warning";
90 } else if (!strcasecmp(argv
[0],"logfile") && argc
== 2) {
93 server
.logfile
= zstrdup(argv
[1]);
94 if (!strcasecmp(server
.logfile
,"stdout")) {
95 zfree(server
.logfile
);
96 server
.logfile
= NULL
;
99 /* Test if we are able to open the file. The server will not
100 * be able to abort just for this problem later... */
101 logfp
= fopen(server
.logfile
,"a");
103 err
= sdscatprintf(sdsempty(),
104 "Can't open the log file: %s", strerror(errno
));
109 } else if (!strcasecmp(argv
[0],"syslog-enabled") && argc
== 2) {
110 if ((server
.syslog_enabled
= yesnotoi(argv
[1])) == -1) {
111 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
113 } else if (!strcasecmp(argv
[0],"syslog-ident") && argc
== 2) {
114 if (server
.syslog_ident
) zfree(server
.syslog_ident
);
115 server
.syslog_ident
= zstrdup(argv
[1]);
116 } else if (!strcasecmp(argv
[0],"syslog-facility") && argc
== 2) {
120 } validSyslogFacilities
[] = {
122 {"local0", LOG_LOCAL0
},
123 {"local1", LOG_LOCAL1
},
124 {"local2", LOG_LOCAL2
},
125 {"local3", LOG_LOCAL3
},
126 {"local4", LOG_LOCAL4
},
127 {"local5", LOG_LOCAL5
},
128 {"local6", LOG_LOCAL6
},
129 {"local7", LOG_LOCAL7
},
134 for (i
= 0; validSyslogFacilities
[i
].name
; i
++) {
135 if (!strcasecmp(validSyslogFacilities
[i
].name
, argv
[1])) {
136 server
.syslog_facility
= validSyslogFacilities
[i
].value
;
141 if (!validSyslogFacilities
[i
].name
) {
142 err
= "Invalid log facility. Must be one of USER or between LOCAL0-LOCAL7";
145 } else if (!strcasecmp(argv
[0],"databases") && argc
== 2) {
146 server
.dbnum
= atoi(argv
[1]);
147 if (server
.dbnum
< 1) {
148 err
= "Invalid number of databases"; goto loaderr
;
150 } else if (!strcasecmp(argv
[0],"include") && argc
== 2) {
151 loadServerConfig(argv
[1],NULL
);
152 } else if (!strcasecmp(argv
[0],"maxclients") && argc
== 2) {
153 server
.maxclients
= atoi(argv
[1]);
154 } else if (!strcasecmp(argv
[0],"maxmemory") && argc
== 2) {
155 server
.maxmemory
= memtoll(argv
[1],NULL
);
156 } else if (!strcasecmp(argv
[0],"maxmemory-policy") && argc
== 2) {
157 if (!strcasecmp(argv
[1],"volatile-lru")) {
158 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_LRU
;
159 } else if (!strcasecmp(argv
[1],"volatile-random")) {
160 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_RANDOM
;
161 } else if (!strcasecmp(argv
[1],"volatile-ttl")) {
162 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_TTL
;
163 } else if (!strcasecmp(argv
[1],"allkeys-lru")) {
164 server
.maxmemory_policy
= REDIS_MAXMEMORY_ALLKEYS_LRU
;
165 } else if (!strcasecmp(argv
[1],"allkeys-random")) {
166 server
.maxmemory_policy
= REDIS_MAXMEMORY_ALLKEYS_RANDOM
;
167 } else if (!strcasecmp(argv
[1],"noeviction")) {
168 server
.maxmemory_policy
= REDIS_MAXMEMORY_NO_EVICTION
;
170 err
= "Invalid maxmemory policy";
173 } else if (!strcasecmp(argv
[0],"maxmemory-samples") && argc
== 2) {
174 server
.maxmemory_samples
= atoi(argv
[1]);
175 if (server
.maxmemory_samples
<= 0) {
176 err
= "maxmemory-samples must be 1 or greater";
179 } else if (!strcasecmp(argv
[0],"slaveof") && argc
== 3) {
180 server
.masterhost
= sdsnew(argv
[1]);
181 server
.masterport
= atoi(argv
[2]);
182 server
.repl_state
= REDIS_REPL_CONNECT
;
183 } else if (!strcasecmp(argv
[0],"repl-ping-slave-period") && argc
== 2) {
184 server
.repl_ping_slave_period
= atoi(argv
[1]);
185 if (server
.repl_ping_slave_period
<= 0) {
186 err
= "repl-ping-slave-period must be 1 or greater";
189 } else if (!strcasecmp(argv
[0],"repl-timeout") && argc
== 2) {
190 server
.repl_timeout
= atoi(argv
[1]);
191 if (server
.repl_timeout
<= 0) {
192 err
= "repl-timeout must be 1 or greater";
195 } else if (!strcasecmp(argv
[0],"masterauth") && argc
== 2) {
196 server
.masterauth
= zstrdup(argv
[1]);
197 } else if (!strcasecmp(argv
[0],"slave-serve-stale-data") && argc
== 2) {
198 if ((server
.repl_serve_stale_data
= yesnotoi(argv
[1])) == -1) {
199 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
201 } else if (!strcasecmp(argv
[0],"glueoutputbuf")) {
202 redisLog(REDIS_WARNING
, "Deprecated configuration directive: \"%s\"", argv
[0]);
203 } else if (!strcasecmp(argv
[0],"rdbcompression") && argc
== 2) {
204 if ((server
.rdb_compression
= yesnotoi(argv
[1])) == -1) {
205 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
207 } else if (!strcasecmp(argv
[0],"activerehashing") && argc
== 2) {
208 if ((server
.activerehashing
= yesnotoi(argv
[1])) == -1) {
209 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
211 } else if (!strcasecmp(argv
[0],"daemonize") && argc
== 2) {
212 if ((server
.daemonize
= yesnotoi(argv
[1])) == -1) {
213 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
215 } else if (!strcasecmp(argv
[0],"appendonly") && argc
== 2) {
218 if ((yes
= yesnotoi(argv
[1])) == -1) {
219 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
221 server
.aof_state
= yes
? REDIS_AOF_ON
: REDIS_AOF_OFF
;
222 } else if (!strcasecmp(argv
[0],"appendfilename") && argc
== 2) {
223 zfree(server
.aof_filename
);
224 server
.aof_filename
= zstrdup(argv
[1]);
225 } else if (!strcasecmp(argv
[0],"no-appendfsync-on-rewrite")
227 if ((server
.aof_no_fsync_on_rewrite
= yesnotoi(argv
[1])) == -1) {
228 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
230 } else if (!strcasecmp(argv
[0],"appendfsync") && argc
== 2) {
231 if (!strcasecmp(argv
[1],"no")) {
232 server
.aof_fsync
= AOF_FSYNC_NO
;
233 } else if (!strcasecmp(argv
[1],"always")) {
234 server
.aof_fsync
= AOF_FSYNC_ALWAYS
;
235 } else if (!strcasecmp(argv
[1],"everysec")) {
236 server
.aof_fsync
= AOF_FSYNC_EVERYSEC
;
238 err
= "argument must be 'no', 'always' or 'everysec'";
241 } else if (!strcasecmp(argv
[0],"auto-aof-rewrite-percentage") &&
244 server
.aof_rewrite_perc
= atoi(argv
[1]);
245 if (server
.aof_rewrite_perc
< 0) {
246 err
= "Invalid negative percentage for AOF auto rewrite";
249 } else if (!strcasecmp(argv
[0],"auto-aof-rewrite-min-size") &&
252 server
.aof_rewrite_min_size
= memtoll(argv
[1],NULL
);
253 } else if (!strcasecmp(argv
[0],"requirepass") && argc
== 2) {
254 server
.requirepass
= zstrdup(argv
[1]);
255 } else if (!strcasecmp(argv
[0],"pidfile") && argc
== 2) {
256 zfree(server
.pidfile
);
257 server
.pidfile
= zstrdup(argv
[1]);
258 } else if (!strcasecmp(argv
[0],"dbfilename") && argc
== 2) {
259 zfree(server
.rdb_filename
);
260 server
.rdb_filename
= zstrdup(argv
[1]);
261 } else if (!strcasecmp(argv
[0],"hash-max-zipmap-entries") && argc
== 2) {
262 redisLog(REDIS_WARNING
, "Deprecated configuration directive: \"%s\"", argv
[0]);
263 server
.hash_max_ziplist_entries
= memtoll(argv
[1], NULL
);
264 } else if (!strcasecmp(argv
[0],"hash-max-zipmap-value") && argc
== 2) {
265 redisLog(REDIS_WARNING
, "Deprecated configuration directive: \"%s\"", argv
[0]);
266 server
.hash_max_ziplist_value
= memtoll(argv
[1], NULL
);
267 } else if (!strcasecmp(argv
[0],"hash-max-ziplist-entries") && argc
== 2) {
268 server
.hash_max_ziplist_entries
= memtoll(argv
[1], NULL
);
269 } else if (!strcasecmp(argv
[0],"hash-max-ziplist-value") && argc
== 2) {
270 server
.hash_max_ziplist_value
= memtoll(argv
[1], NULL
);
271 } else if (!strcasecmp(argv
[0],"list-max-ziplist-entries") && argc
== 2){
272 server
.list_max_ziplist_entries
= memtoll(argv
[1], NULL
);
273 } else if (!strcasecmp(argv
[0],"list-max-ziplist-value") && argc
== 2) {
274 server
.list_max_ziplist_value
= memtoll(argv
[1], NULL
);
275 } else if (!strcasecmp(argv
[0],"set-max-intset-entries") && argc
== 2) {
276 server
.set_max_intset_entries
= memtoll(argv
[1], NULL
);
277 } else if (!strcasecmp(argv
[0],"zset-max-ziplist-entries") && argc
== 2) {
278 server
.zset_max_ziplist_entries
= memtoll(argv
[1], NULL
);
279 } else if (!strcasecmp(argv
[0],"zset-max-ziplist-value") && argc
== 2) {
280 server
.zset_max_ziplist_value
= memtoll(argv
[1], NULL
);
281 } else if (!strcasecmp(argv
[0],"rename-command") && argc
== 3) {
282 struct redisCommand
*cmd
= lookupCommand(argv
[1]);
286 err
= "No such command in rename-command";
290 /* If the target command name is the emtpy string we just
291 * remove it from the command table. */
292 retval
= dictDelete(server
.commands
, argv
[1]);
293 redisAssert(retval
== DICT_OK
);
295 /* Otherwise we re-add the command under a different name. */
296 if (sdslen(argv
[2]) != 0) {
297 sds copy
= sdsdup(argv
[2]);
299 retval
= dictAdd(server
.commands
, copy
, cmd
);
300 if (retval
!= DICT_OK
) {
302 err
= "Target command name already exists"; goto loaderr
;
305 } else if (!strcasecmp(argv
[0],"cluster-enabled") && argc
== 2) {
306 if ((server
.cluster_enabled
= yesnotoi(argv
[1])) == -1) {
307 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
309 } else if (!strcasecmp(argv
[0],"cluster-config-file") && argc
== 2) {
310 zfree(server
.cluster
.configfile
);
311 server
.cluster
.configfile
= zstrdup(argv
[1]);
312 } else if (!strcasecmp(argv
[0],"lua-time-limit") && argc
== 2) {
313 server
.lua_time_limit
= strtoll(argv
[1],NULL
,10);
314 } else if (!strcasecmp(argv
[0],"slowlog-log-slower-than") &&
317 server
.slowlog_log_slower_than
= strtoll(argv
[1],NULL
,10);
318 } else if (!strcasecmp(argv
[0],"slowlog-max-len") && argc
== 2) {
319 server
.slowlog_max_len
= strtoll(argv
[1],NULL
,10);
321 err
= "Bad directive or wrong number of arguments"; goto loaderr
;
323 sdsfreesplitres(argv
,argc
);
325 sdsfreesplitres(lines
,totlines
);
329 fprintf(stderr
, "\n*** FATAL CONFIG FILE ERROR ***\n");
330 fprintf(stderr
, "Reading the configuration file, at line %d\n", linenum
);
331 fprintf(stderr
, ">>> '%s'\n", lines
[i
]);
332 fprintf(stderr
, "%s\n", err
);
336 /* Load the server configuration from the specified filename.
337 * The function appends the additional configuration directives stored
338 * in the 'options' string to the config file before loading.
340 * Both filename and options can be NULL, in such a case are considered
341 * emtpy. This way loadServerConfig can be used to just load a file or
342 * just load a string. */
343 void loadServerConfig(char *filename
, char *options
) {
344 sds config
= sdsempty();
345 char buf
[REDIS_CONFIGLINE_MAX
+1];
347 /* Load the file content */
351 if (filename
[0] == '-' && filename
[1] == '\0') {
354 if ((fp
= fopen(filename
,"r")) == NULL
) {
355 redisLog(REDIS_WARNING
,
356 "Fatal error, can't open config file '%s'", filename
);
360 while(fgets(buf
,REDIS_CONFIGLINE_MAX
+1,fp
) != NULL
)
361 config
= sdscat(config
,buf
);
362 if (fp
!= stdin
) fclose(fp
);
364 /* Append the additional options */
366 config
= sdscat(config
,"\n");
367 config
= sdscat(config
,options
);
369 loadServerConfigFromString(config
);
373 /*-----------------------------------------------------------------------------
374 * CONFIG command for remote configuration
375 *----------------------------------------------------------------------------*/
377 void configSetCommand(redisClient
*c
) {
380 redisAssertWithInfo(c
,c
->argv
[2],c
->argv
[2]->encoding
== REDIS_ENCODING_RAW
);
381 redisAssertWithInfo(c
,c
->argv
[2],c
->argv
[3]->encoding
== REDIS_ENCODING_RAW
);
384 if (!strcasecmp(c
->argv
[2]->ptr
,"dbfilename")) {
385 zfree(server
.rdb_filename
);
386 server
.rdb_filename
= zstrdup(o
->ptr
);
387 } else if (!strcasecmp(c
->argv
[2]->ptr
,"requirepass")) {
388 zfree(server
.requirepass
);
389 server
.requirepass
= ((char*)o
->ptr
)[0] ? zstrdup(o
->ptr
) : NULL
;
390 } else if (!strcasecmp(c
->argv
[2]->ptr
,"masterauth")) {
391 zfree(server
.masterauth
);
392 server
.masterauth
= zstrdup(o
->ptr
);
393 } else if (!strcasecmp(c
->argv
[2]->ptr
,"maxmemory")) {
394 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
||
396 server
.maxmemory
= ll
;
397 if (server
.maxmemory
) freeMemoryIfNeeded();
398 } else if (!strcasecmp(c
->argv
[2]->ptr
,"maxmemory-policy")) {
399 if (!strcasecmp(o
->ptr
,"volatile-lru")) {
400 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_LRU
;
401 } else if (!strcasecmp(o
->ptr
,"volatile-random")) {
402 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_RANDOM
;
403 } else if (!strcasecmp(o
->ptr
,"volatile-ttl")) {
404 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_TTL
;
405 } else if (!strcasecmp(o
->ptr
,"allkeys-lru")) {
406 server
.maxmemory_policy
= REDIS_MAXMEMORY_ALLKEYS_LRU
;
407 } else if (!strcasecmp(o
->ptr
,"allkeys-random")) {
408 server
.maxmemory_policy
= REDIS_MAXMEMORY_ALLKEYS_RANDOM
;
409 } else if (!strcasecmp(o
->ptr
,"noeviction")) {
410 server
.maxmemory_policy
= REDIS_MAXMEMORY_NO_EVICTION
;
414 } else if (!strcasecmp(c
->argv
[2]->ptr
,"maxmemory-samples")) {
415 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
||
416 ll
<= 0) goto badfmt
;
417 server
.maxmemory_samples
= ll
;
418 } else if (!strcasecmp(c
->argv
[2]->ptr
,"timeout")) {
419 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
||
420 ll
< 0 || ll
> LONG_MAX
) goto badfmt
;
421 server
.maxidletime
= ll
;
422 } else if (!strcasecmp(c
->argv
[2]->ptr
,"appendfsync")) {
423 if (!strcasecmp(o
->ptr
,"no")) {
424 server
.aof_fsync
= AOF_FSYNC_NO
;
425 } else if (!strcasecmp(o
->ptr
,"everysec")) {
426 server
.aof_fsync
= AOF_FSYNC_EVERYSEC
;
427 } else if (!strcasecmp(o
->ptr
,"always")) {
428 server
.aof_fsync
= AOF_FSYNC_ALWAYS
;
432 } else if (!strcasecmp(c
->argv
[2]->ptr
,"no-appendfsync-on-rewrite")) {
433 int yn
= yesnotoi(o
->ptr
);
435 if (yn
== -1) goto badfmt
;
436 server
.aof_no_fsync_on_rewrite
= yn
;
437 } else if (!strcasecmp(c
->argv
[2]->ptr
,"appendonly")) {
438 int enable
= yesnotoi(o
->ptr
);
440 if (enable
== -1) goto badfmt
;
441 if (enable
== 0 && server
.aof_state
!= REDIS_AOF_OFF
) {
443 } else if (enable
&& server
.aof_state
== REDIS_AOF_OFF
) {
444 if (startAppendOnly() == REDIS_ERR
) {
446 "Unable to turn on AOF. Check server logs.");
450 } else if (!strcasecmp(c
->argv
[2]->ptr
,"auto-aof-rewrite-percentage")) {
451 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
452 server
.aof_rewrite_perc
= ll
;
453 } else if (!strcasecmp(c
->argv
[2]->ptr
,"auto-aof-rewrite-min-size")) {
454 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
455 server
.aof_rewrite_min_size
= ll
;
456 } else if (!strcasecmp(c
->argv
[2]->ptr
,"save")) {
458 sds
*v
= sdssplitlen(o
->ptr
,sdslen(o
->ptr
)," ",1,&vlen
);
460 /* Perform sanity check before setting the new config:
461 * - Even number of args
462 * - Seconds >= 1, changes >= 0 */
464 sdsfreesplitres(v
,vlen
);
467 for (j
= 0; j
< vlen
; j
++) {
471 val
= strtoll(v
[j
], &eptr
, 10);
472 if (eptr
[0] != '\0' ||
473 ((j
& 1) == 0 && val
< 1) ||
474 ((j
& 1) == 1 && val
< 0)) {
475 sdsfreesplitres(v
,vlen
);
479 /* Finally set the new config */
480 resetServerSaveParams();
481 for (j
= 0; j
< vlen
; j
+= 2) {
485 seconds
= strtoll(v
[j
],NULL
,10);
486 changes
= strtoll(v
[j
+1],NULL
,10);
487 appendServerSaveParams(seconds
, changes
);
489 sdsfreesplitres(v
,vlen
);
490 } else if (!strcasecmp(c
->argv
[2]->ptr
,"slave-serve-stale-data")) {
491 int yn
= yesnotoi(o
->ptr
);
493 if (yn
== -1) goto badfmt
;
494 server
.repl_serve_stale_data
= yn
;
495 } else if (!strcasecmp(c
->argv
[2]->ptr
,"dir")) {
496 if (chdir((char*)o
->ptr
) == -1) {
497 addReplyErrorFormat(c
,"Changing directory: %s", strerror(errno
));
500 } else if (!strcasecmp(c
->argv
[2]->ptr
,"hash-max-ziplist-entries")) {
501 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
502 server
.hash_max_ziplist_entries
= ll
;
503 } else if (!strcasecmp(c
->argv
[2]->ptr
,"hash-max-ziplist-value")) {
504 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
505 server
.hash_max_ziplist_value
= ll
;
506 } else if (!strcasecmp(c
->argv
[2]->ptr
,"list-max-ziplist-entries")) {
507 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
508 server
.list_max_ziplist_entries
= ll
;
509 } else if (!strcasecmp(c
->argv
[2]->ptr
,"list-max-ziplist-value")) {
510 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
511 server
.list_max_ziplist_value
= ll
;
512 } else if (!strcasecmp(c
->argv
[2]->ptr
,"set-max-intset-entries")) {
513 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
514 server
.set_max_intset_entries
= ll
;
515 } else if (!strcasecmp(c
->argv
[2]->ptr
,"zset-max-ziplist-entries")) {
516 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
517 server
.zset_max_ziplist_entries
= ll
;
518 } else if (!strcasecmp(c
->argv
[2]->ptr
,"zset-max-ziplist-value")) {
519 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
520 server
.zset_max_ziplist_value
= ll
;
521 } else if (!strcasecmp(c
->argv
[2]->ptr
,"lua-time-limit")) {
522 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
523 server
.lua_time_limit
= ll
;
524 } else if (!strcasecmp(c
->argv
[2]->ptr
,"slowlog-log-slower-than")) {
525 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
) goto badfmt
;
526 server
.slowlog_log_slower_than
= ll
;
527 } else if (!strcasecmp(c
->argv
[2]->ptr
,"slowlog-max-len")) {
528 if (getLongLongFromObject(o
,&ll
) == REDIS_ERR
|| ll
< 0) goto badfmt
;
529 server
.slowlog_max_len
= (unsigned)ll
;
530 } else if (!strcasecmp(c
->argv
[2]->ptr
,"loglevel")) {
531 if (!strcasecmp(o
->ptr
,"warning")) {
532 server
.verbosity
= REDIS_WARNING
;
533 } else if (!strcasecmp(o
->ptr
,"notice")) {
534 server
.verbosity
= REDIS_NOTICE
;
535 } else if (!strcasecmp(o
->ptr
,"verbose")) {
536 server
.verbosity
= REDIS_VERBOSE
;
537 } else if (!strcasecmp(o
->ptr
,"debug")) {
538 server
.verbosity
= REDIS_DEBUG
;
543 addReplyErrorFormat(c
,"Unsupported CONFIG parameter: %s",
544 (char*)c
->argv
[2]->ptr
);
547 addReply(c
,shared
.ok
);
550 badfmt
: /* Bad format errors */
551 addReplyErrorFormat(c
,"Invalid argument '%s' for CONFIG SET '%s'",
553 (char*)c
->argv
[2]->ptr
);
556 void configGetCommand(redisClient
*c
) {
557 robj
*o
= c
->argv
[2];
558 void *replylen
= addDeferredMultiBulkLength(c
);
559 char *pattern
= o
->ptr
;
562 redisAssertWithInfo(c
,o
,o
->encoding
== REDIS_ENCODING_RAW
);
564 if (stringmatch(pattern
,"dir",0)) {
567 if (getcwd(buf
,sizeof(buf
)) == NULL
)
570 addReplyBulkCString(c
,"dir");
571 addReplyBulkCString(c
,buf
);
574 if (stringmatch(pattern
,"dbfilename",0)) {
575 addReplyBulkCString(c
,"dbfilename");
576 addReplyBulkCString(c
,server
.rdb_filename
);
579 if (stringmatch(pattern
,"requirepass",0)) {
580 addReplyBulkCString(c
,"requirepass");
581 addReplyBulkCString(c
,server
.requirepass
);
584 if (stringmatch(pattern
,"masterauth",0)) {
585 addReplyBulkCString(c
,"masterauth");
586 addReplyBulkCString(c
,server
.masterauth
);
589 if (stringmatch(pattern
,"maxmemory",0)) {
590 ll2string(buf
,sizeof(buf
),server
.maxmemory
);
591 addReplyBulkCString(c
,"maxmemory");
592 addReplyBulkCString(c
,buf
);
595 if (stringmatch(pattern
,"maxmemory-policy",0)) {
598 switch(server
.maxmemory_policy
) {
599 case REDIS_MAXMEMORY_VOLATILE_LRU
: s
= "volatile-lru"; break;
600 case REDIS_MAXMEMORY_VOLATILE_TTL
: s
= "volatile-ttl"; break;
601 case REDIS_MAXMEMORY_VOLATILE_RANDOM
: s
= "volatile-random"; break;
602 case REDIS_MAXMEMORY_ALLKEYS_LRU
: s
= "allkeys-lru"; break;
603 case REDIS_MAXMEMORY_ALLKEYS_RANDOM
: s
= "allkeys-random"; break;
604 case REDIS_MAXMEMORY_NO_EVICTION
: s
= "noeviction"; break;
605 default: s
= "unknown"; break; /* too harmless to panic */
607 addReplyBulkCString(c
,"maxmemory-policy");
608 addReplyBulkCString(c
,s
);
611 if (stringmatch(pattern
,"maxmemory-samples",0)) {
612 ll2string(buf
,sizeof(buf
),server
.maxmemory_samples
);
613 addReplyBulkCString(c
,"maxmemory-samples");
614 addReplyBulkCString(c
,buf
);
617 if (stringmatch(pattern
,"timeout",0)) {
618 ll2string(buf
,sizeof(buf
),server
.maxidletime
);
619 addReplyBulkCString(c
,"timeout");
620 addReplyBulkCString(c
,buf
);
623 if (stringmatch(pattern
,"appendonly",0)) {
624 addReplyBulkCString(c
,"appendonly");
625 addReplyBulkCString(c
,server
.aof_state
== REDIS_AOF_OFF
? "no" : "yes");
628 if (stringmatch(pattern
,"no-appendfsync-on-rewrite",0)) {
629 addReplyBulkCString(c
,"no-appendfsync-on-rewrite");
630 addReplyBulkCString(c
,server
.aof_no_fsync_on_rewrite
? "yes" : "no");
633 if (stringmatch(pattern
,"appendfsync",0)) {
636 switch(server
.aof_fsync
) {
637 case AOF_FSYNC_NO
: policy
= "no"; break;
638 case AOF_FSYNC_EVERYSEC
: policy
= "everysec"; break;
639 case AOF_FSYNC_ALWAYS
: policy
= "always"; break;
640 default: policy
= "unknown"; break; /* too harmless to panic */
642 addReplyBulkCString(c
,"appendfsync");
643 addReplyBulkCString(c
,policy
);
646 if (stringmatch(pattern
,"save",0)) {
647 sds buf
= sdsempty();
650 for (j
= 0; j
< server
.saveparamslen
; j
++) {
651 buf
= sdscatprintf(buf
,"%ld %d",
652 server
.saveparams
[j
].seconds
,
653 server
.saveparams
[j
].changes
);
654 if (j
!= server
.saveparamslen
-1)
655 buf
= sdscatlen(buf
," ",1);
657 addReplyBulkCString(c
,"save");
658 addReplyBulkCString(c
,buf
);
662 if (stringmatch(pattern
,"auto-aof-rewrite-percentage",0)) {
663 addReplyBulkCString(c
,"auto-aof-rewrite-percentage");
664 addReplyBulkLongLong(c
,server
.aof_rewrite_perc
);
667 if (stringmatch(pattern
,"auto-aof-rewrite-min-size",0)) {
668 addReplyBulkCString(c
,"auto-aof-rewrite-min-size");
669 addReplyBulkLongLong(c
,server
.aof_rewrite_min_size
);
672 if (stringmatch(pattern
,"slave-serve-stale-data",0)) {
673 addReplyBulkCString(c
,"slave-serve-stale-data");
674 addReplyBulkCString(c
,server
.repl_serve_stale_data
? "yes" : "no");
677 if (stringmatch(pattern
,"hash-max-ziplist-entries",0)) {
678 addReplyBulkCString(c
,"hash-max-ziplist-entries");
679 addReplyBulkLongLong(c
,server
.hash_max_ziplist_entries
);
682 if (stringmatch(pattern
,"hash-max-ziplist-value",0)) {
683 addReplyBulkCString(c
,"hash-max-ziplist-value");
684 addReplyBulkLongLong(c
,server
.hash_max_ziplist_value
);
687 if (stringmatch(pattern
,"list-max-ziplist-entries",0)) {
688 addReplyBulkCString(c
,"list-max-ziplist-entries");
689 addReplyBulkLongLong(c
,server
.list_max_ziplist_entries
);
692 if (stringmatch(pattern
,"list-max-ziplist-value",0)) {
693 addReplyBulkCString(c
,"list-max-ziplist-value");
694 addReplyBulkLongLong(c
,server
.list_max_ziplist_value
);
697 if (stringmatch(pattern
,"set-max-intset-entries",0)) {
698 addReplyBulkCString(c
,"set-max-intset-entries");
699 addReplyBulkLongLong(c
,server
.set_max_intset_entries
);
702 if (stringmatch(pattern
,"zset-max-ziplist-entries",0)) {
703 addReplyBulkCString(c
,"zset-max-ziplist-entries");
704 addReplyBulkLongLong(c
,server
.zset_max_ziplist_entries
);
707 if (stringmatch(pattern
,"zset-max-ziplist-value",0)) {
708 addReplyBulkCString(c
,"zset-max-ziplist-value");
709 addReplyBulkLongLong(c
,server
.zset_max_ziplist_value
);
712 if (stringmatch(pattern
,"lua-time-limit",0)) {
713 addReplyBulkCString(c
,"lua-time-limit");
714 addReplyBulkLongLong(c
,server
.lua_time_limit
);
717 if (stringmatch(pattern
,"slowlog-log-slower-than",0)) {
718 addReplyBulkCString(c
,"slowlog-log-slower-than");
719 addReplyBulkLongLong(c
,server
.slowlog_log_slower_than
);
722 if (stringmatch(pattern
,"slowlog-max-len",0)) {
723 addReplyBulkCString(c
,"slowlog-max-len");
724 addReplyBulkLongLong(c
,server
.slowlog_max_len
);
727 if (stringmatch(pattern
,"loglevel",0)) {
730 switch(server
.verbosity
) {
731 case REDIS_WARNING
: s
= "warning"; break;
732 case REDIS_VERBOSE
: s
= "verbose"; break;
733 case REDIS_NOTICE
: s
= "notice"; break;
734 case REDIS_DEBUG
: s
= "debug"; break;
735 default: s
= "unknown"; break; /* too harmless to panic */
737 addReplyBulkCString(c
,"loglevel");
738 addReplyBulkCString(c
,s
);
741 setDeferredMultiBulkLength(c
,replylen
,matches
*2);
744 void configCommand(redisClient
*c
) {
745 if (!strcasecmp(c
->argv
[1]->ptr
,"set")) {
746 if (c
->argc
!= 4) goto badarity
;
748 } else if (!strcasecmp(c
->argv
[1]->ptr
,"get")) {
749 if (c
->argc
!= 3) goto badarity
;
751 } else if (!strcasecmp(c
->argv
[1]->ptr
,"resetstat")) {
752 if (c
->argc
!= 2) goto badarity
;
753 server
.stat_keyspace_hits
= 0;
754 server
.stat_keyspace_misses
= 0;
755 server
.stat_numcommands
= 0;
756 server
.stat_numconnections
= 0;
757 server
.stat_expiredkeys
= 0;
758 resetCommandTableStats();
759 addReply(c
,shared
.ok
);
762 "CONFIG subcommand must be one of GET, SET, RESETSTAT");
767 addReplyErrorFormat(c
,"Wrong number of arguments for CONFIG %s",
768 (char*) c
->argv
[1]->ptr
);