]> git.saurik.com Git - redis.git/blame - src/db.c
rename(2) used in diskstore.c for atomic updates of keys
[redis.git] / src / db.c
CommitLineData
e2641e09 1#include "redis.h"
2
3#include <signal.h>
4
5/*-----------------------------------------------------------------------------
6 * C-level DB API
7 *----------------------------------------------------------------------------*/
8
5d46e370 9/* Important notes on lookup and disk store.
10 *
11 * When disk store is enabled on lookup we can have different cases.
12 *
13 * a) The key is in memory:
14 * - If the key is not in IO_SAVEINPROG state we can access it.
15 * As if it's just IO_SAVE this means we have the key in the IO queue
16 * but can't be accessed by the IO thread (it requires to be
17 * translated into an IO Job by the cache cron function.)
18 * - If the key is in IO_SAVEINPROG we can't touch the key and have
19 * to blocking wait completion of operations.
20 * b) The key is not in memory:
21 * - If it's marked as non existing on disk as well (negative cache)
22 * we don't need to perform the disk access.
23 * - if the key MAY EXIST, but is not in memory, and it is marked as IO_SAVE
24 * then the key can only be a deleted one. As IO_SAVE keys are never
25 * evicted (dirty state), so the only possibility is that key was deleted.
26 * - if the key MAY EXIST we need to blocking load it.
27 * We check that the key is not in IO_SAVEINPROG state before accessing
28 * the disk object. If it is in this state, we wait.
29 */
30
31void lookupWaitBusyKey(redisDb *db, robj *key) {
32 /* FIXME: wait just for this key, not everything */
33 waitEmptyIOJobsQueue();
34 processAllPendingIOJobs();
35 redisAssert((cacheScheduleIOGetFlags(db,key) & REDIS_IO_SAVEINPROG) == 0);
36}
37
e2641e09 38robj *lookupKey(redisDb *db, robj *key) {
39 dictEntry *de = dictFind(db->dict,key->ptr);
40 if (de) {
41 robj *val = dictGetEntryVal(de);
42
7d0966a6 43 /* Update the access time for the aging algorithm.
44 * Don't do it if we have a saving child, as this will trigger
45 * a copy on write madness. */
46 if (server.bgsavechildpid == -1 && server.bgrewritechildpid == -1)
47 val->lru = server.lruclock;
ef59a8bc 48
3be00d7e 49 if (server.ds_enabled &&
50 cacheScheduleIOGetFlags(db,key) & REDIS_IO_SAVEINPROG)
51 {
5d46e370 52 /* Need to wait for the key to get unbusy */
5ab7bbfc 53 redisLog(REDIS_DEBUG,"Lookup found a key in SAVEINPROG state. Waiting. (Key was in the cache)");
5d46e370 54 lookupWaitBusyKey(db,key);
e2641e09 55 }
53eeeaff 56 server.stat_keyspace_hits++;
e2641e09 57 return val;
58 } else {
ad01a255 59 time_t expire;
60 robj *val;
61
62 /* Key not found in the in memory hash table, but if disk store is
63 * enabled we may have this key on disk. If so load it in memory
9a373028 64 * in a blocking way. */
ad01a255 65 if (server.ds_enabled && cacheKeyMayExist(db,key)) {
5d46e370 66 long flags = cacheScheduleIOGetFlags(db,key);
67
68 /* They key is not in cache, but it has a SAVE op in queue?
69 * The only possibility is that the key was deleted, since
70 * dirty keys are not evicted. */
71 if (flags & REDIS_IO_SAVE) {
72 server.stat_keyspace_misses++;
73 return NULL;
74 }
75
76 /* At this point we need to blocking load the key in memory.
77 * The first thing we do is waiting here if the key is busy. */
78 if (flags & REDIS_IO_SAVEINPROG) {
5ab7bbfc 79 redisLog(REDIS_DEBUG,"Lookup found a key in SAVEINPROG state. Waiting (while force loading).");
5d46e370 80 lookupWaitBusyKey(db,key);
9a373028 81 }
82
5d46e370 83 redisLog(REDIS_DEBUG,"Force loading key %s via lookup", key->ptr);
ad01a255 84 val = dsGet(db,key,&expire);
85 if (val) {
86 int retval = dbAdd(db,key,val);
87 redisAssert(retval == REDIS_OK);
88 if (expire != -1) setExpire(db,key,expire);
89 server.stat_keyspace_hits++;
90 return val;
5d46e370 91 } else {
92 cacheSetKeyDoesNotExist(db,key);
ad01a255 93 }
94 }
53eeeaff 95 server.stat_keyspace_misses++;
e2641e09 96 return NULL;
97 }
98}
99
100robj *lookupKeyRead(redisDb *db, robj *key) {
101 expireIfNeeded(db,key);
102 return lookupKey(db,key);
103}
104
105robj *lookupKeyWrite(redisDb *db, robj *key) {
bcf2995c 106 expireIfNeeded(db,key);
e2641e09 107 return lookupKey(db,key);
108}
109
110robj *lookupKeyReadOrReply(redisClient *c, robj *key, robj *reply) {
111 robj *o = lookupKeyRead(c->db, key);
112 if (!o) addReply(c,reply);
113 return o;
114}
115
116robj *lookupKeyWriteOrReply(redisClient *c, robj *key, robj *reply) {
117 robj *o = lookupKeyWrite(c->db, key);
118 if (!o) addReply(c,reply);
119 return o;
120}
121
122/* Add the key to the DB. If the key already exists REDIS_ERR is returned,
123 * otherwise REDIS_OK is returned, and the caller should increment the
124 * refcount of 'val'. */
125int dbAdd(redisDb *db, robj *key, robj *val) {
126 /* Perform a lookup before adding the key, as we need to copy the
127 * key value. */
128 if (dictFind(db->dict, key->ptr) != NULL) {
129 return REDIS_ERR;
130 } else {
131 sds copy = sdsdup(key->ptr);
132 dictAdd(db->dict, copy, val);
c15a3887 133 if (server.ds_enabled) cacheSetKeyMayExist(db,key);
e2641e09 134 return REDIS_OK;
135 }
136}
137
138/* If the key does not exist, this is just like dbAdd(). Otherwise
139 * the value associated to the key is replaced with the new one.
140 *
141 * On update (key already existed) 0 is returned. Otherwise 1. */
142int dbReplace(redisDb *db, robj *key, robj *val) {
a440ecf0 143 robj *oldval;
c15a3887 144 int retval;
a440ecf0 145
146 if ((oldval = dictFetchValue(db->dict,key->ptr)) == NULL) {
e2641e09 147 sds copy = sdsdup(key->ptr);
148 dictAdd(db->dict, copy, val);
c15a3887 149 retval = 1;
e2641e09 150 } else {
151 dictReplace(db->dict, key->ptr, val);
c15a3887 152 retval = 0;
e2641e09 153 }
c15a3887 154 if (server.ds_enabled) cacheSetKeyMayExist(db,key);
155 return retval;
e2641e09 156}
157
158int dbExists(redisDb *db, robj *key) {
159 return dictFind(db->dict,key->ptr) != NULL;
160}
161
162/* Return a random key, in form of a Redis object.
163 * If there are no keys, NULL is returned.
164 *
165 * The function makes sure to return keys not already expired. */
166robj *dbRandomKey(redisDb *db) {
167 struct dictEntry *de;
168
169 while(1) {
170 sds key;
171 robj *keyobj;
172
173 de = dictGetRandomKey(db->dict);
174 if (de == NULL) return NULL;
175
176 key = dictGetEntryKey(de);
177 keyobj = createStringObject(key,sdslen(key));
178 if (dictFind(db->expires,key)) {
179 if (expireIfNeeded(db,keyobj)) {
180 decrRefCount(keyobj);
181 continue; /* search for another key. This expired. */
182 }
183 }
184 return keyobj;
185 }
186}
187
188/* Delete a key, value, and associated expiration entry if any, from the DB */
189int dbDelete(redisDb *db, robj *key) {
d934e1e8 190 /* If diskstore is enabled make sure to awake waiting clients for this key
191 * as it is not really useful to wait for a key already deleted to be
192 * loaded from disk. */
c15a3887 193 if (server.ds_enabled) {
194 handleClientsBlockedOnSwappedKey(db,key);
195 cacheSetKeyDoesNotExist(db,key);
196 }
16d77878 197
e2641e09 198 /* Deleting an entry from the expires dict will not free the sds of
199 * the key, because it is shared with the main dictionary. */
200 if (dictSize(db->expires) > 0) dictDelete(db->expires,key->ptr);
201 return dictDelete(db->dict,key->ptr) == DICT_OK;
202}
203
204/* Empty the whole database */
205long long emptyDb() {
206 int j;
207 long long removed = 0;
208
209 for (j = 0; j < server.dbnum; j++) {
210 removed += dictSize(server.db[j].dict);
211 dictEmpty(server.db[j].dict);
212 dictEmpty(server.db[j].expires);
213 }
214 return removed;
215}
216
217int selectDb(redisClient *c, int id) {
218 if (id < 0 || id >= server.dbnum)
219 return REDIS_ERR;
220 c->db = &server.db[id];
221 return REDIS_OK;
222}
223
cea8c5cd 224/*-----------------------------------------------------------------------------
225 * Hooks for key space changes.
226 *
227 * Every time a key in the database is modified the function
228 * signalModifiedKey() is called.
229 *
230 * Every time a DB is flushed the function signalFlushDb() is called.
231 *----------------------------------------------------------------------------*/
232
233void signalModifiedKey(redisDb *db, robj *key) {
234 touchWatchedKey(db,key);
235 if (server.ds_enabled)
3be00d7e 236 cacheScheduleIO(db,key,REDIS_IO_SAVE);
cea8c5cd 237}
238
239void signalFlushedDb(int dbid) {
240 touchWatchedKeysOnFlush(dbid);
cea8c5cd 241}
242
e2641e09 243/*-----------------------------------------------------------------------------
244 * Type agnostic commands operating on the key space
245 *----------------------------------------------------------------------------*/
246
247void flushdbCommand(redisClient *c) {
248 server.dirty += dictSize(c->db->dict);
cea8c5cd 249 signalFlushedDb(c->db->id);
e2641e09 250 dictEmpty(c->db->dict);
251 dictEmpty(c->db->expires);
120b9ba8 252 if (server.ds_enabled) dsFlushDb(c->db->id);
e2641e09 253 addReply(c,shared.ok);
254}
255
256void flushallCommand(redisClient *c) {
cea8c5cd 257 signalFlushedDb(-1);
e2641e09 258 server.dirty += emptyDb();
259 addReply(c,shared.ok);
260 if (server.bgsavechildpid != -1) {
261 kill(server.bgsavechildpid,SIGKILL);
262 rdbRemoveTempFile(server.bgsavechildpid);
263 }
120b9ba8 264 if (server.ds_enabled)
265 dsFlushDb(-1);
266 else
267 rdbSave(server.dbfilename);
e2641e09 268 server.dirty++;
269}
270
271void delCommand(redisClient *c) {
272 int deleted = 0, j;
273
274 for (j = 1; j < c->argc; j++) {
31222292 275 if (server.ds_enabled) {
276 lookupKeyRead(c->db,c->argv[j]);
277 /* FIXME: this can be optimized a lot, no real need to load
278 * a possibly huge value. */
279 }
e2641e09 280 if (dbDelete(c->db,c->argv[j])) {
cea8c5cd 281 signalModifiedKey(c->db,c->argv[j]);
e2641e09 282 server.dirty++;
283 deleted++;
31222292 284 } else if (server.ds_enabled) {
285 if (cacheKeyMayExist(c->db,c->argv[j]) &&
286 dsExists(c->db,c->argv[j]))
287 {
3be00d7e 288 cacheScheduleIO(c->db,c->argv[j],REDIS_IO_SAVE);
31222292 289 deleted = 1;
290 }
e2641e09 291 }
292 }
293 addReplyLongLong(c,deleted);
294}
295
296void existsCommand(redisClient *c) {
297 expireIfNeeded(c->db,c->argv[1]);
298 if (dbExists(c->db,c->argv[1])) {
299 addReply(c, shared.cone);
300 } else {
301 addReply(c, shared.czero);
302 }
303}
304
305void selectCommand(redisClient *c) {
306 int id = atoi(c->argv[1]->ptr);
307
308 if (selectDb(c,id) == REDIS_ERR) {
3ab20376 309 addReplyError(c,"invalid DB index");
e2641e09 310 } else {
311 addReply(c,shared.ok);
312 }
313}
314
315void randomkeyCommand(redisClient *c) {
316 robj *key;
317
318 if ((key = dbRandomKey(c->db)) == NULL) {
319 addReply(c,shared.nullbulk);
320 return;
321 }
322
323 addReplyBulk(c,key);
324 decrRefCount(key);
325}
326
327void keysCommand(redisClient *c) {
328 dictIterator *di;
329 dictEntry *de;
330 sds pattern = c->argv[1]->ptr;
e0e1c195 331 int plen = sdslen(pattern), allkeys;
e2641e09 332 unsigned long numkeys = 0;
b301c1fc 333 void *replylen = addDeferredMultiBulkLength(c);
e2641e09 334
335 di = dictGetIterator(c->db->dict);
e0e1c195 336 allkeys = (pattern[0] == '*' && pattern[1] == '\0');
e2641e09 337 while((de = dictNext(di)) != NULL) {
338 sds key = dictGetEntryKey(de);
339 robj *keyobj;
340
e0e1c195 341 if (allkeys || stringmatchlen(pattern,plen,key,sdslen(key),0)) {
e2641e09 342 keyobj = createStringObject(key,sdslen(key));
343 if (expireIfNeeded(c->db,keyobj) == 0) {
344 addReplyBulk(c,keyobj);
345 numkeys++;
346 }
347 decrRefCount(keyobj);
348 }
349 }
350 dictReleaseIterator(di);
b301c1fc 351 setDeferredMultiBulkLength(c,replylen,numkeys);
e2641e09 352}
353
354void dbsizeCommand(redisClient *c) {
b70d3555 355 addReplyLongLong(c,dictSize(c->db->dict));
e2641e09 356}
357
358void lastsaveCommand(redisClient *c) {
b70d3555 359 addReplyLongLong(c,server.lastsave);
e2641e09 360}
361
362void typeCommand(redisClient *c) {
363 robj *o;
364 char *type;
365
366 o = lookupKeyRead(c->db,c->argv[1]);
367 if (o == NULL) {
3ab20376 368 type = "none";
e2641e09 369 } else {
370 switch(o->type) {
3ab20376
PN
371 case REDIS_STRING: type = "string"; break;
372 case REDIS_LIST: type = "list"; break;
373 case REDIS_SET: type = "set"; break;
374 case REDIS_ZSET: type = "zset"; break;
375 case REDIS_HASH: type = "hash"; break;
376 default: type = "unknown"; break;
e2641e09 377 }
378 }
3ab20376 379 addReplyStatus(c,type);
e2641e09 380}
381
382void saveCommand(redisClient *c) {
383 if (server.bgsavechildpid != -1) {
3ab20376 384 addReplyError(c,"Background save already in progress");
e2641e09 385 return;
386 }
387 if (rdbSave(server.dbfilename) == REDIS_OK) {
388 addReply(c,shared.ok);
389 } else {
390 addReply(c,shared.err);
391 }
392}
393
394void bgsaveCommand(redisClient *c) {
395 if (server.bgsavechildpid != -1) {
3ab20376 396 addReplyError(c,"Background save already in progress");
e2641e09 397 return;
398 }
399 if (rdbSaveBackground(server.dbfilename) == REDIS_OK) {
3ab20376 400 addReplyStatus(c,"Background saving started");
e2641e09 401 } else {
402 addReply(c,shared.err);
403 }
404}
405
406void shutdownCommand(redisClient *c) {
407 if (prepareForShutdown() == REDIS_OK)
408 exit(0);
3ab20376 409 addReplyError(c,"Errors trying to SHUTDOWN. Check logs.");
e2641e09 410}
411
412void renameGenericCommand(redisClient *c, int nx) {
413 robj *o;
414
415 /* To use the same key as src and dst is probably an error */
416 if (sdscmp(c->argv[1]->ptr,c->argv[2]->ptr) == 0) {
417 addReply(c,shared.sameobjecterr);
418 return;
419 }
420
421 if ((o = lookupKeyWriteOrReply(c,c->argv[1],shared.nokeyerr)) == NULL)
422 return;
423
424 incrRefCount(o);
e2641e09 425 if (dbAdd(c->db,c->argv[2],o) == REDIS_ERR) {
426 if (nx) {
427 decrRefCount(o);
428 addReply(c,shared.czero);
429 return;
430 }
431 dbReplace(c->db,c->argv[2],o);
432 }
433 dbDelete(c->db,c->argv[1]);
cea8c5cd 434 signalModifiedKey(c->db,c->argv[1]);
435 signalModifiedKey(c->db,c->argv[2]);
e2641e09 436 server.dirty++;
437 addReply(c,nx ? shared.cone : shared.ok);
438}
439
440void renameCommand(redisClient *c) {
441 renameGenericCommand(c,0);
442}
443
444void renamenxCommand(redisClient *c) {
445 renameGenericCommand(c,1);
446}
447
448void moveCommand(redisClient *c) {
449 robj *o;
450 redisDb *src, *dst;
451 int srcid;
452
453 /* Obtain source and target DB pointers */
454 src = c->db;
455 srcid = c->db->id;
456 if (selectDb(c,atoi(c->argv[2]->ptr)) == REDIS_ERR) {
457 addReply(c,shared.outofrangeerr);
458 return;
459 }
460 dst = c->db;
461 selectDb(c,srcid); /* Back to the source DB */
462
463 /* If the user is moving using as target the same
464 * DB as the source DB it is probably an error. */
465 if (src == dst) {
466 addReply(c,shared.sameobjecterr);
467 return;
468 }
469
470 /* Check if the element exists and get a reference */
471 o = lookupKeyWrite(c->db,c->argv[1]);
472 if (!o) {
473 addReply(c,shared.czero);
474 return;
475 }
476
477 /* Try to add the element to the target DB */
e2641e09 478 if (dbAdd(dst,c->argv[1],o) == REDIS_ERR) {
479 addReply(c,shared.czero);
480 return;
481 }
482 incrRefCount(o);
483
484 /* OK! key moved, free the entry in the source DB */
485 dbDelete(src,c->argv[1]);
486 server.dirty++;
487 addReply(c,shared.cone);
488}
489
490/*-----------------------------------------------------------------------------
491 * Expires API
492 *----------------------------------------------------------------------------*/
493
494int removeExpire(redisDb *db, robj *key) {
495 /* An expire may only be removed if there is a corresponding entry in the
496 * main dict. Otherwise, the key will never be freed. */
497 redisAssert(dictFind(db->dict,key->ptr) != NULL);
a539d29a 498 return dictDelete(db->expires,key->ptr) == DICT_OK;
e2641e09 499}
500
0cf5b7b5 501void setExpire(redisDb *db, robj *key, time_t when) {
e2641e09 502 dictEntry *de;
503
504 /* Reuse the sds from the main dict in the expire dict */
0cf5b7b5 505 de = dictFind(db->dict,key->ptr);
506 redisAssert(de != NULL);
507 dictReplace(db->expires,dictGetEntryKey(de),(void*)when);
e2641e09 508}
509
510/* Return the expire time of the specified key, or -1 if no expire
511 * is associated with this key (i.e. the key is non volatile) */
512time_t getExpire(redisDb *db, robj *key) {
513 dictEntry *de;
514
515 /* No expire? return ASAP */
516 if (dictSize(db->expires) == 0 ||
517 (de = dictFind(db->expires,key->ptr)) == NULL) return -1;
518
519 /* The entry was found in the expire dict, this means it should also
520 * be present in the main dict (safety check). */
521 redisAssert(dictFind(db->dict,key->ptr) != NULL);
522 return (time_t) dictGetEntryVal(de);
523}
524
bcf2995c 525/* Propagate expires into slaves and the AOF file.
526 * When a key expires in the master, a DEL operation for this key is sent
527 * to all the slaves and the AOF file if enabled.
528 *
529 * This way the key expiry is centralized in one place, and since both
530 * AOF and the master->slave link guarantee operation ordering, everything
531 * will be consistent even if we allow write operations against expiring
532 * keys. */
533void propagateExpire(redisDb *db, robj *key) {
bcf2995c 534 robj *argv[2];
535
bcf2995c 536 argv[0] = createStringObject("DEL",3);
537 argv[1] = key;
538 incrRefCount(key);
539
540 if (server.appendonly)
1b1f47c9 541 feedAppendOnlyFile(server.delCommand,db->id,argv,2);
bcf2995c 542 if (listLength(server.slaves))
543 replicationFeedSlaves(server.slaves,db->id,argv,2);
544
c25a5d3b 545 decrRefCount(argv[0]);
546 decrRefCount(argv[1]);
bcf2995c 547}
548
e2641e09 549int expireIfNeeded(redisDb *db, robj *key) {
550 time_t when = getExpire(db,key);
bcf2995c 551
552 /* If we are running in the context of a slave, return ASAP:
553 * the slave key expiration is controlled by the master that will
554 * send us synthesized DEL operations for expired keys.
555 *
556 * Still we try to return the right information to the caller,
557 * that is, 0 if we think the key should be still valid, 1 if
558 * we think the key is expired at this time. */
559 if (server.masterhost != NULL) {
560 return time(NULL) > when;
561 }
562
e2641e09 563 if (when < 0) return 0;
564
565 /* Return when this key has not expired */
566 if (time(NULL) <= when) return 0;
567
568 /* Delete the key */
569 server.stat_expiredkeys++;
bcf2995c 570 propagateExpire(db,key);
e2641e09 571 return dbDelete(db,key);
572}
573
574/*-----------------------------------------------------------------------------
575 * Expires Commands
576 *----------------------------------------------------------------------------*/
577
578void expireGenericCommand(redisClient *c, robj *key, robj *param, long offset) {
579 dictEntry *de;
144a5e72 580 long seconds;
e2641e09 581
582 if (getLongFromObjectOrReply(c, param, &seconds, NULL) != REDIS_OK) return;
583
584 seconds -= offset;
585
586 de = dictFind(c->db->dict,key->ptr);
587 if (de == NULL) {
588 addReply(c,shared.czero);
589 return;
590 }
591 if (seconds <= 0) {
592 if (dbDelete(c->db,key)) server.dirty++;
593 addReply(c, shared.cone);
cea8c5cd 594 signalModifiedKey(c->db,key);
e2641e09 595 return;
596 } else {
597 time_t when = time(NULL)+seconds;
0cf5b7b5 598 setExpire(c->db,key,when);
599 addReply(c,shared.cone);
cea8c5cd 600 signalModifiedKey(c->db,key);
0cf5b7b5 601 server.dirty++;
e2641e09 602 return;
603 }
604}
605
606void expireCommand(redisClient *c) {
607 expireGenericCommand(c,c->argv[1],c->argv[2],0);
608}
609
610void expireatCommand(redisClient *c) {
611 expireGenericCommand(c,c->argv[1],c->argv[2],time(NULL));
612}
613
614void ttlCommand(redisClient *c) {
c91abdcd 615 time_t expire, ttl = -1;
e2641e09 616
617 expire = getExpire(c->db,c->argv[1]);
618 if (expire != -1) {
c91abdcd 619 ttl = (expire-time(NULL));
e2641e09 620 if (ttl < 0) ttl = -1;
621 }
c91abdcd 622 addReplyLongLong(c,(long long)ttl);
e2641e09 623}
a539d29a 624
625void persistCommand(redisClient *c) {
626 dictEntry *de;
627
628 de = dictFind(c->db->dict,c->argv[1]->ptr);
629 if (de == NULL) {
630 addReply(c,shared.czero);
631 } else {
1fb4e8de 632 if (removeExpire(c->db,c->argv[1])) {
a539d29a 633 addReply(c,shared.cone);
1fb4e8de 634 server.dirty++;
635 } else {
a539d29a 636 addReply(c,shared.czero);
1fb4e8de 637 }
a539d29a 638 }
639}