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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
|
/* Copyright (c) 2002-2018 Dovecot authors, see the included COPYING file */
#include "imap-common.h"
#include "ioloop.h"
#include "llist.h"
#include "str.h"
#include "hostpid.h"
#include "net.h"
#include "iostream.h"
#include "iostream-rawlog.h"
#include "istream.h"
#include "istream-concat.h"
#include "ostream.h"
#include "time-util.h"
#include "var-expand.h"
#include "master-service.h"
#include "imap-resp-code.h"
#include "imap-util.h"
#include "imap-urlauth.h"
#include "mail-error.h"
#include "mail-namespace.h"
#include "mail-storage-service.h"
#include "mail-autoexpunge.h"
#include "imap-state.h"
#include "imap-search.h"
#include "imap-notify.h"
#include "imap-commands.h"
#include "imap-feature.h"
#include <unistd.h>
/* If the last command took longer than this to run, log statistics on
where the time was spent. */
#define IMAP_CLIENT_DISCONNECT_LOG_STATS_CMD_MIN_RUNNING_MSECS 1000
extern struct mail_storage_callbacks mail_storage_callbacks;
extern struct imap_client_vfuncs imap_client_vfuncs;
struct imap_module_register imap_module_register = { 0 };
struct client *imap_clients = NULL;
unsigned int imap_client_count = 0;
unsigned int imap_feature_condstore = UINT_MAX;
unsigned int imap_feature_qresync = UINT_MAX;
static const char *client_command_state_names[CLIENT_COMMAND_STATE_DONE+1] = {
"wait-input",
"wait-output",
"wait-external",
"wait-unambiguity",
"wait-sync",
"done"
};
static void client_idle_timeout(struct client *client)
{
if (client->output_cmd_lock == NULL)
client_send_line(client, "* BYE Disconnected for inactivity.");
client_destroy(client, t_strdup_printf(
"Inactivity - no input for %"PRIdTIME_T" secs",
ioloop_time - client->last_input));
}
static void client_init_urlauth(struct client *client)
{
struct imap_urlauth_config config;
i_zero(&config);
config.url_host = client->set->imap_urlauth_host;
config.url_port = client->set->imap_urlauth_port;
config.socket_path = t_strconcat(client->user->set->base_dir,
"/"IMAP_URLAUTH_SOCKET_NAME, NULL);
config.session_id = client->user->session_id;
config.access_user = client->user->username;
config.access_service = "imap";
config.access_anonymous = client->user->anonymous;
client->urlauth_ctx = imap_urlauth_init(client->user, &config);
}
static bool user_has_special_use_mailboxes(struct mail_user *user)
{
struct mail_namespace_settings *ns_set;
/*
* We have to iterate over namespace and mailbox *settings* since
* the namespaces haven't been set up yet. The namespaces haven't
* been set up so that we don't hold up the OK response to LOGIN
* when using slow lib-storage backends.
*/
/* no namespaces => no special use flags */
if (!array_is_created(&user->set->namespaces))
return FALSE;
array_foreach_elem(&user->set->namespaces, ns_set) {
struct mailbox_settings *box_set;
/* no mailboxes => no special use flags */
if (!array_is_created(&ns_set->mailboxes))
continue;
array_foreach_elem(&ns_set->mailboxes, box_set) {
if (box_set->special_use != NULL)
return TRUE;
}
}
return FALSE;
}
struct client *client_create(int fd_in, int fd_out,
struct event *event, struct mail_user *user,
struct mail_storage_service_user *service_user,
const struct imap_settings *set,
const struct smtp_submit_settings *smtp_set)
{
const struct mail_storage_settings *mail_set;
struct client *client;
const char *ident;
pool_t pool;
/* always use nonblocking I/O */
net_set_nonblock(fd_in, TRUE);
net_set_nonblock(fd_out, TRUE);
pool = pool_alloconly_create("imap client", 2048);
client = p_new(pool, struct client, 1);
client->pool = pool;
client->v = imap_client_vfuncs;
client->event = event;
event_ref(client->event);
client->set = set;
client->smtp_set = smtp_set;
client->service_user = service_user;
client->fd_in = fd_in;
client->fd_out = fd_out;
client->input = i_stream_create_fd(fd_in,
set->imap_max_line_length);
client->output = o_stream_create_fd(fd_out, SIZE_MAX);
o_stream_set_no_error_handling(client->output, TRUE);
i_stream_set_name(client->input, "<imap client>");
o_stream_set_name(client->output, "<imap client>");
o_stream_set_flush_callback(client->output, client_output, client);
p_array_init(&client->module_contexts, client->pool, 5);
client->last_input = ioloop_time;
client->to_idle = timeout_add(CLIENT_IDLE_TIMEOUT_MSECS,
client_idle_timeout, client);
client->command_pool =
pool_alloconly_create(MEMPOOL_GROWING"client command", 1024*2);
client->user = user;
client->notify_count_changes = TRUE;
client->notify_flag_changes = TRUE;
p_array_init(&client->enabled_features, client->pool, 8);
client->capability_string =
str_new(client->pool, sizeof(CAPABILITY_STRING)+64);
if (*set->imap_capability == '\0')
str_append(client->capability_string, CAPABILITY_STRING);
else if (*set->imap_capability != '+') {
str_append(client->capability_string, set->imap_capability);
} else {
str_append(client->capability_string, CAPABILITY_STRING);
str_append_c(client->capability_string, ' ');
str_append(client->capability_string, set->imap_capability + 1);
}
if (client->set->imap_literal_minus)
client_add_capability(client, "LITERAL-");
else
client_add_capability(client, "LITERAL+");
if (user->fuzzy_search) {
/* Enable FUZZY capability only when it actually has
a chance of working */
client_add_capability(client, "SEARCH=FUZZY");
}
mail_set = mail_user_set_get_storage_set(user);
if (mail_set->mailbox_list_index) {
/* NOTIFY is enabled only when mailbox list indexes are
enabled, although even that doesn't necessarily guarantee
it always */
client_add_capability(client, "NOTIFY");
}
if (*set->imap_urlauth_host != '\0' &&
*mail_set->mail_attribute_dict != '\0') {
/* Enable URLAUTH capability only when dict is
configured correctly */
client_init_urlauth(client);
client_add_capability(client, "URLAUTH");
client_add_capability(client, "URLAUTH=BINARY");
}
if (set->imap_metadata && *mail_set->mail_attribute_dict != '\0')
client_add_capability(client, "METADATA");
if (user_has_special_use_mailboxes(user)) {
/* Advertise SPECIAL-USE only if there are actually some
SPECIAL-USE flags in mailbox configuration. */
client_add_capability(client, "SPECIAL-USE");
}
ident = mail_user_get_anvil_userip_ident(client->user);
if (ident != NULL) {
master_service_anvil_send(master_service, t_strconcat(
"CONNECT\t", my_pid, "\timap/", ident, "\n", NULL));
client->anvil_sent = TRUE;
}
imap_client_count++;
DLLIST_PREPEND(&imap_clients, client);
if (hook_client_created != NULL)
hook_client_created(&client);
imap_refresh_proctitle();
return client;
}
void client_create_finish_io(struct client *client)
{
if (client->set->rawlog_dir[0] != '\0') {
(void)iostream_rawlog_create(client->set->rawlog_dir,
&client->input, &client->output);
}
client->io = io_add_istream(client->input, client_input, client);
}
int client_create_finish(struct client *client, const char **error_r)
{
if (mail_namespaces_init(client->user, error_r) < 0)
return -1;
mail_namespaces_set_storage_callbacks(client->user->namespaces,
&mail_storage_callbacks, client);
client->v.init(client);
return 0;
}
void client_add_istream_prefix(struct client *client,
const unsigned char *data, size_t size)
{
i_assert(client->io == NULL);
struct istream *inputs[] = {
i_stream_create_copy_from_data(data, size),
client->input,
NULL
};
client->input = i_stream_create_concat(inputs);
i_stream_copy_fd(client->input, inputs[1]);
i_stream_unref(&inputs[0]);
i_stream_unref(&inputs[1]);
i_stream_set_input_pending(client->input, TRUE);
}
static void client_default_init(struct client *client ATTR_UNUSED)
{
/* nothing */
}
void client_command_cancel(struct client_command_context **_cmd)
{
struct client_command_context *cmd = *_cmd;
bool cmd_ret;
switch (cmd->state) {
case CLIENT_COMMAND_STATE_WAIT_INPUT:
/* a bit kludgy check: cancel command only if it has context
set. currently only append command matches this check. all
other commands haven't even started the processing yet. */
if (cmd->context == NULL)
break;
/* fall through */
case CLIENT_COMMAND_STATE_WAIT_EXTERNAL:
case CLIENT_COMMAND_STATE_WAIT_OUTPUT:
cmd->cancel = TRUE;
break;
case CLIENT_COMMAND_STATE_WAIT_UNAMBIGUITY:
case CLIENT_COMMAND_STATE_WAIT_SYNC:
/* commands haven't started yet */
break;
case CLIENT_COMMAND_STATE_DONE:
i_unreached();
}
cmd_ret = !cmd->cancel || cmd->func == NULL ? TRUE :
command_exec(cmd);
if (!cmd_ret) {
if (cmd->client->output->closed)
i_panic("command didn't cancel itself: %s", cmd->name);
} else {
client_command_free(*_cmd != NULL ? _cmd : &cmd);
}
}
const char *client_stats(struct client *client)
{
const struct var_expand_table logout_tab[] = {
{ 'i', dec2str(i_stream_get_absolute_offset(client->input)), "input" },
{ 'o', dec2str(client->output->offset), "output" },
{ '\0', client->user->session_id, "session" },
{ '\0', dec2str(client->fetch_hdr_count), "fetch_hdr_count" },
{ '\0', dec2str(client->fetch_hdr_bytes), "fetch_hdr_bytes" },
{ '\0', dec2str(client->fetch_body_count), "fetch_body_count" },
{ '\0', dec2str(client->fetch_body_bytes), "fetch_body_bytes" },
{ '\0', dec2str(client->deleted_count), "deleted" },
{ '\0', dec2str(client->expunged_count), "expunged" },
{ '\0', dec2str(client->trashed_count), "trashed" },
{ '\0', dec2str(client->autoexpunged_count), "autoexpunged" },
{ '\0', dec2str(client->append_count), "appended" },
{ '\0', NULL, NULL }
};
const struct var_expand_table *user_tab =
mail_user_var_expand_table(client->user);
const struct var_expand_table *tab =
t_var_expand_merge_tables(logout_tab, user_tab);
string_t *str;
const char *error;
str = t_str_new(128);
if (var_expand_with_funcs(str, client->set->imap_logout_format,
tab, mail_user_var_expand_func_table,
client->user, &error) < 0) {
e_error(client->event,
"Failed to expand imap_logout_format=%s: %s",
client->set->imap_logout_format, error);
}
return str_c(str);
}
void client_destroy(struct client *client, const char *reason)
{
client->v.destroy(client, reason);
}
static void
client_command_stats_append(string_t *str,
const struct client_command_stats *stats,
const char *wait_condition,
size_t buffered_size)
{
uint64_t ioloop_wait_usecs;
unsigned int msecs_in_ioloop;
ioloop_wait_usecs = io_loop_get_wait_usecs(current_ioloop);
msecs_in_ioloop = (ioloop_wait_usecs -
stats->start_ioloop_wait_usecs + 999) / 1000;
str_printfa(str, "running for %d.%03d + waiting ",
(int)((stats->running_usecs+999)/1000 / 1000),
(int)((stats->running_usecs+999)/1000 % 1000));
if (wait_condition[0] != '\0')
str_printfa(str, "%s ", wait_condition);
str_printfa(str, "for %d.%03d secs",
msecs_in_ioloop / 1000, msecs_in_ioloop % 1000);
if (stats->lock_wait_usecs > 0) {
int lock_wait_msecs = (stats->lock_wait_usecs+999)/1000;
str_printfa(str, ", %d.%03d in locks",
lock_wait_msecs/1000, lock_wait_msecs%1000);
}
str_printfa(str, ", %"PRIu64" B in + %"PRIu64,
stats->bytes_in, stats->bytes_out);
if (buffered_size > 0)
str_printfa(str, "+%zu", buffered_size);
str_append(str, " B out");
}
static const char *client_get_last_command_status(struct client *client)
{
if (client->logged_out)
return "";
if (client->last_cmd_name == NULL)
return " (No commands sent)";
/* client disconnected without sending LOGOUT. if the last command
took over 1 second to run, log it. */
const struct client_command_stats *stats = &client->last_cmd_stats;
string_t *str = t_str_new(128);
int last_run_secs = timeval_diff_msecs(&ioloop_timeval,
&stats->last_run_timeval);
str_printfa(str, " (%s finished %d.%03d secs ago",
client->last_cmd_name, last_run_secs/1000,
last_run_secs%1000);
if (timeval_diff_msecs(&stats->last_run_timeval, &stats->start_time) >=
IMAP_CLIENT_DISCONNECT_LOG_STATS_CMD_MIN_RUNNING_MSECS) {
str_append(str, " - ");
client_command_stats_append(str, stats, "", 0);
}
str_append_c(str, ')');
return str_c(str);
}
static const char *client_get_commands_status(struct client *client)
{
struct client_command_context *cmd, *last_cmd = NULL;
struct client_command_stats all_stats;
string_t *str;
enum io_condition cond;
const char *cond_str;
if (client->command_queue == NULL)
return client_get_last_command_status(client);
i_zero(&all_stats);
str = t_str_new(128);
str_append(str, " (");
for (cmd = client->command_queue; cmd != NULL; cmd = cmd->next) {
if (cmd->name == NULL) {
/* (parts of a) tag were received, but not yet
the command name */
continue;
}
str_append(str, cmd->name);
if (cmd->next != NULL)
str_append_c(str, ',');
all_stats.running_usecs += cmd->stats.running_usecs;
all_stats.lock_wait_usecs += cmd->stats.lock_wait_usecs;
all_stats.bytes_in += cmd->stats.bytes_in;
all_stats.bytes_out += cmd->stats.bytes_out;
last_cmd = cmd;
}
if (last_cmd == NULL)
return client_get_last_command_status(client);
cond = io_loop_find_fd_conditions(current_ioloop, client->fd_out);
if ((cond & (IO_READ | IO_WRITE)) == (IO_READ | IO_WRITE))
cond_str = "input/output";
else if ((cond & IO_READ) != 0)
cond_str = "input";
else if ((cond & IO_WRITE) != 0)
cond_str = "output";
else
cond_str = "nothing";
all_stats.start_ioloop_wait_usecs =
last_cmd->stats.start_ioloop_wait_usecs;
str_append_c(str, ' ');
client_command_stats_append(str, &all_stats, cond_str,
o_stream_get_buffer_used_size(client->output));
str_printfa(str, ", state=%s)",
client_command_state_names[last_cmd->state]);
return str_c(str);
}
static void client_log_disconnect(struct client *client, const char *reason)
{
e_info(client->event, "Disconnected: %s %s", reason, client_stats(client));
}
static void client_default_destroy(struct client *client, const char *reason)
{
struct client_command_context *cmd;
i_assert(!client->destroyed);
client->destroyed = TRUE;
client->disconnected = TRUE;
if (client->disconnect_reason != NULL)
reason = client->disconnect_reason;
if (reason == NULL)
reason = t_strconcat(
io_stream_get_disconnect_reason(client->input,
client->output),
client_get_commands_status(client), NULL);
i_stream_close(client->input);
o_stream_close(client->output);
/* finish off all the queued commands. */
if (client->output_cmd_lock != NULL)
client_command_cancel(&client->output_cmd_lock);
while (client->command_queue != NULL) {
cmd = client->command_queue;
client_command_cancel(&cmd);
}
/* handle the input_lock command last. it might have been waiting on
other queued commands (although we probably should just drop the
command at that point since it hasn't started running. but this may
change in future). */
if (client->input_lock != NULL)
client_command_cancel(&client->input_lock);
if (client->notify_ctx != NULL)
imap_notify_deinit(&client->notify_ctx);
if (client->urlauth_ctx != NULL)
imap_urlauth_deinit(&client->urlauth_ctx);
/* Keep mailbox closing close to last, so anything that could
potentially have transactions open will close them first. */
if (client->mailbox != NULL)
imap_client_close_mailbox(client);
if (client->anvil_sent) {
master_service_anvil_send(master_service, t_strconcat(
"DISCONNECT\t", my_pid, "\timap/",
mail_user_get_anvil_userip_ident(client->user),
"\n", NULL));
}
if (client->free_parser != NULL)
imap_parser_unref(&client->free_parser);
io_remove(&client->io);
timeout_remove(&client->to_idle_output);
timeout_remove(&client->to_idle);
/* i/ostreams are already closed at this stage, so fd can be closed */
fd_close_maybe_stdio(&client->fd_in, &client->fd_out);
/* Autoexpunging might run for a long time. Disconnect the client
before it starts, and refresh proctitle so it's clear that it's
doing autoexpunging. We've also sent DISCONNECT to anvil already,
because this is background work and shouldn't really be counted
as an active IMAP session for the user.
Don't autoexpunge if the client is hibernated - it shouldn't be any
different from the non-hibernating IDLE case. For frequent
hibernations it could also be doing unnecessarily much work. */
imap_refresh_proctitle();
if (!client->hibernated) {
client->autoexpunged_count = mail_user_autoexpunge(client->user);
client_log_disconnect(client, reason);
}
mail_user_deinit(&client->user);
/* free the i/ostreams after mail_user_unref(), which could trigger
mail_storage_callbacks notifications that write to the ostream. */
i_stream_destroy(&client->input);
o_stream_destroy(&client->output);
if (array_is_created(&client->search_saved_uidset))
array_free(&client->search_saved_uidset);
if (array_is_created(&client->search_updates))
array_free(&client->search_updates);
pool_unref(&client->command_pool);
mail_storage_service_user_unref(&client->service_user);
imap_client_count--;
DLLIST_REMOVE(&imap_clients, client);
event_unref(&client->event);
i_free(client->last_cmd_name);
pool_unref(&client->pool);
master_service_client_connection_destroyed(master_service);
imap_refresh_proctitle();
}
static void client_destroy_timeout(struct client *client)
{
client_destroy(client, NULL);
}
void client_disconnect(struct client *client, const char *reason)
{
if (client->disconnected)
return;
client->disconnected = TRUE;
client->disconnect_reason = p_strdup(client->pool, reason);
/* Finish the ostream. With IMAP COMPRESS this sends the EOF marker. */
(void)o_stream_finish(client->output);
o_stream_uncork(client->output);
i_stream_close(client->input);
o_stream_close(client->output);
timeout_remove(&client->to_idle);
client->to_idle = timeout_add(0, client_destroy_timeout, client);
}
void client_disconnect_with_error(struct client *client,
const char *client_error)
{
client_send_line(client, t_strconcat("* BYE ", client_error, NULL));
client_disconnect(client, client_error);
}
void client_add_capability(struct client *client, const char *capability)
{
/* require a single capability at a time (feels cleaner) */
i_assert(strchr(capability, ' ') == NULL);
if (client->set->imap_capability[0] != '\0' &&
client->set->imap_capability[0] != '+') {
/* explicit capability - don't change it */
return;
}
str_append_c(client->capability_string, ' ');
str_append(client->capability_string, capability);
}
void client_send_line(struct client *client, const char *data)
{
(void)client_send_line_next(client, data);
}
int client_send_line_next(struct client *client, const char *data)
{
struct const_iovec iov[2];
if (client->output->closed)
return -1;
iov[0].iov_base = data;
iov[0].iov_len = strlen(data);
iov[1].iov_base = "\r\n";
iov[1].iov_len = 2;
if (o_stream_sendv(client->output, iov, 2) < 0)
return -1;
client->last_output = ioloop_time;
if (o_stream_get_buffer_used_size(client->output) >=
CLIENT_OUTPUT_OPTIMAL_SIZE) {
/* buffer full, try flushing */
return o_stream_flush(client->output);
}
return 1;
}
static void
client_cmd_append_timing_stats(struct client_command_context *cmd,
string_t *str)
{
unsigned int msecs_in_cmd, msecs_in_ioloop;
uint64_t ioloop_wait_usecs;
unsigned int msecs_since_cmd;
if (cmd->stats.start_time.tv_sec == 0)
return;
command_stats_flush(cmd);
ioloop_wait_usecs = io_loop_get_wait_usecs(current_ioloop);
msecs_in_cmd = (cmd->stats.running_usecs + 999) / 1000;
msecs_in_ioloop = (ioloop_wait_usecs -
cmd->stats.start_ioloop_wait_usecs + 999) / 1000;
msecs_since_cmd = timeval_diff_msecs(&ioloop_timeval,
&cmd->stats.last_run_timeval);
if (str_data(str)[str_len(str)-1] == '.')
str_truncate(str, str_len(str)-1);
str_printfa(str, " (%d.%03d + %d.%03d ",
msecs_in_cmd / 1000, msecs_in_cmd % 1000,
msecs_in_ioloop / 1000, msecs_in_ioloop % 1000);
if (msecs_since_cmd > 0) {
str_printfa(str, "+ %d.%03d ",
msecs_since_cmd / 1000, msecs_since_cmd % 1000);
}
str_append(str, "secs).");
}
void client_send_tagline(struct client_command_context *cmd, const char *data)
{
cmd->client->v.send_tagline(cmd, data);
}
static void
client_default_send_tagline(struct client_command_context *cmd, const char *data)
{
struct client *client = cmd->client;
const char *tag = cmd->tag;
if (client->output->closed || cmd->cancel)
return;
i_assert(!cmd->tagline_sent);
cmd->tagline_sent = TRUE;
cmd->tagline_reply = p_strdup(cmd->pool, data);
if (tag == NULL || *tag == '\0')
tag = "*";
T_BEGIN {
string_t *str = t_str_new(256);
str_printfa(str, "%s %s", tag, data);
client_cmd_append_timing_stats(cmd, str);
str_append(str, "\r\n");
o_stream_nsend(client->output, str_data(str), str_len(str));
} T_END;
client->last_output = ioloop_time;
}
static int
client_default_sync_notify_more(struct imap_sync_context *ctx ATTR_UNUSED)
{
return 1;
}
void client_send_command_error(struct client_command_context *cmd,
const char *client_error)
{
struct client *client = cmd->client;
const char *error, *cmd_name;
enum imap_parser_error parse_error;
if (client_error == NULL) {
client_error = imap_parser_get_error(cmd->parser, &parse_error);
switch (parse_error) {
case IMAP_PARSE_ERROR_NONE:
i_unreached();
case IMAP_PARSE_ERROR_LITERAL_TOO_BIG:
client_disconnect_with_error(client, client_error);
return;
default:
break;
}
}
if (cmd->tag == NULL)
error = t_strconcat("BAD Error in IMAP tag: ", client_error, NULL);
else if (cmd->name == NULL)
error = t_strconcat("BAD Error in IMAP command: ", client_error, NULL);
else {
cmd_name = t_str_ucase(cmd->name);
error = t_strconcat("BAD Error in IMAP command ",
cmd_name, ": ", client_error, NULL);
}
client_send_tagline(cmd, error);
if (++client->bad_counter >= CLIENT_MAX_BAD_COMMANDS) {
client_disconnect_with_error(client,
"Too many invalid IMAP commands.");
}
cmd->param_error = TRUE;
/* client_read_args() failures rely on this being set, so that the
command processing is stopped even while command function returns
FALSE. */
cmd->state = CLIENT_COMMAND_STATE_DONE;
}
void client_send_internal_error(struct client_command_context *cmd)
{
client_send_tagline(cmd,
t_strflocaltime("NO "MAIL_ERRSTR_CRITICAL_MSG_STAMP, ioloop_time));
}
bool client_read_args(struct client_command_context *cmd, unsigned int count,
unsigned int flags, const struct imap_arg **args_r)
{
int ret;
i_assert(count <= INT_MAX);
ret = imap_parser_read_args(cmd->parser, count, flags, args_r);
if (ret >= (int)count) {
/* all parameters read successfully */
i_assert(cmd->client->input_lock == NULL ||
cmd->client->input_lock == cmd);
client_args_finished(cmd, *args_r);
cmd->client->input_lock = NULL;
return TRUE;
} else if (ret == -2) {
/* need more data */
if (cmd->client->input->closed) {
/* disconnected */
cmd->state = CLIENT_COMMAND_STATE_DONE;
}
return FALSE;
} else {
/* error, or missing arguments */
client_send_command_error(cmd, ret < 0 ? NULL :
"Missing arguments");
return FALSE;
}
}
bool client_read_string_args(struct client_command_context *cmd,
unsigned int count, ...)
{
const struct imap_arg *imap_args;
va_list va;
const char *str;
unsigned int i;
if (!client_read_args(cmd, count, 0, &imap_args))
return FALSE;
va_start(va, count);
for (i = 0; i < count; i++) {
const char **ret = va_arg(va, const char **);
if (IMAP_ARG_IS_EOL(&imap_args[i])) {
client_send_command_error(cmd, "Missing arguments.");
break;
}
if (!imap_arg_get_astring(&imap_args[i], &str)) {
client_send_command_error(cmd, "Invalid arguments.");
break;
}
if (ret != NULL)
*ret = str;
}
va_end(va);
return i == count;
}
void client_args_finished(struct client_command_context *cmd,
const struct imap_arg *args)
{
string_t *str = t_str_new(256);
if (cmd->args != NULL && cmd->args[0] != '\0') {
str_append(str, cmd->args);
str_append_c(str, ' ');
}
imap_write_args(str, args);
cmd->args = p_strdup(cmd->pool, str_c(str));
event_add_str(cmd->event, "cmd_args", cmd->args);
str_truncate(str, 0);
if (cmd->human_args != NULL && cmd->human_args[0] != '\0') {
str_append(str, cmd->human_args);
str_append_c(str, ' ');
}
imap_write_args_for_human(str, args);
cmd->human_args = p_strdup(cmd->pool, str_c(str));
event_add_str(cmd->event, "cmd_human_args", cmd->human_args);
}
static struct client_command_context *
client_command_find_with_flags(struct client_command_context *new_cmd,
enum command_flags flags,
enum client_command_state max_state)
{
struct client_command_context *cmd;
cmd = new_cmd->client->command_queue;
for (; cmd != NULL; cmd = cmd->next) {
/* The tagline_sent check is a bit kludgy here. Plugins may
hook into sync_notify_more() and send the tagline before
finishing the command. During this stage the state was been
dropped from _WAIT_SYNC to _WAIT_OUTPUT, so the <= max_state
check doesn't work correctly here. (Perhaps we should add
a new _WAIT_SYNC_OUTPUT?) */
if (cmd->state <= max_state && !cmd->tagline_sent &&
cmd != new_cmd && (cmd->cmd_flags & flags) != 0)
return cmd;
}
return NULL;
}
static bool client_command_is_ambiguous(struct client_command_context *cmd)
{
enum command_flags flags;
enum client_command_state max_state =
CLIENT_COMMAND_STATE_WAIT_UNAMBIGUITY;
bool broken_client = FALSE;
if ((cmd->cmd_flags & COMMAND_FLAG_REQUIRES_SYNC) != 0 &&
!imap_sync_is_allowed(cmd->client))
return TRUE;
if (cmd->search_save_result_used) {
/* if there are pending commands that update the search
save result, wait */
struct client_command_context *old_cmd = cmd->next;
for (; old_cmd != NULL; old_cmd = old_cmd->next) {
if (old_cmd->search_save_result)
return TRUE;
}
}
if ((cmd->cmd_flags & COMMAND_FLAG_BREAKS_MAILBOX) ==
COMMAND_FLAG_BREAKS_MAILBOX) {
/* there must be no other command running that uses the
selected mailbox */
flags = COMMAND_FLAG_USES_MAILBOX;
max_state = CLIENT_COMMAND_STATE_DONE;
} else if ((cmd->cmd_flags & COMMAND_FLAG_USES_SEQS) != 0) {
/* no existing command must be breaking sequences */
flags = COMMAND_FLAG_BREAKS_SEQS;
broken_client = TRUE;
} else if ((cmd->cmd_flags & COMMAND_FLAG_BREAKS_SEQS) != 0) {
/* if existing command uses sequences, we'll have to block */
flags = COMMAND_FLAG_USES_SEQS;
} else {
return FALSE;
}
if (client_command_find_with_flags(cmd, flags, max_state) == NULL) {
if (cmd->client->syncing) {
/* don't do anything until syncing is finished */
return TRUE;
}
if (cmd->client->mailbox_change_lock != NULL &&
cmd->client->mailbox_change_lock != cmd) {
/* don't do anything until mailbox is fully
opened/closed */
return TRUE;
}
return FALSE;
}
if (broken_client) {
client_send_line(cmd->client,
"* BAD ["IMAP_RESP_CODE_CLIENTBUG"] "
"Command pipelining results in ambiguity.");
}
return TRUE;
}
struct client_command_context *client_command_alloc(struct client *client)
{
struct client_command_context *cmd;
cmd = p_new(client->command_pool, struct client_command_context, 1);
cmd->client = client;
cmd->pool = client->command_pool;
cmd->global_event = event_create(client->event);
cmd->event = event_create(cmd->global_event);
cmd->stats.start_time = ioloop_timeval;
cmd->stats.last_run_timeval = ioloop_timeval;
cmd->stats.start_ioloop_wait_usecs =
io_loop_get_wait_usecs(current_ioloop);
p_array_init(&cmd->module_contexts, cmd->pool, 5);
DLLIST_PREPEND(&client->command_queue, cmd);
client->command_queue_size++;
imap_client_notify_command_allocated(client);
return cmd;
}
void client_command_init_finished(struct client_command_context *cmd)
{
event_add_str(cmd->event, "cmd_tag", cmd->tag);
/* use "unknown" until we checked that the command name is known/valid */
event_add_str(cmd->event, "cmd_name", "unknown");
/* the actual command name received from client - as-is */
event_add_str(cmd->event, "cmd_input_name", cmd->name);
}
static struct client_command_context *
client_command_new(struct client *client)
{
struct client_command_context *cmd;
cmd = client_command_alloc(client);
if (client->free_parser != NULL) {
cmd->parser = client->free_parser;
client->free_parser = NULL;
} else {
cmd->parser =
imap_parser_create(client->input, client->output,
client->set->imap_max_line_length);
if (client->set->imap_literal_minus)
imap_parser_enable_literal_minus(cmd->parser);
}
return cmd;
}
void client_add_missing_io(struct client *client)
{
if (client->io == NULL && !client->disconnected)
client->io = io_add_istream(client->input, client_input, client);
}
void client_command_free(struct client_command_context **_cmd)
{
struct client_command_context *cmd = *_cmd;
struct client *client = cmd->client;
enum client_command_state state = cmd->state;
*_cmd = NULL;
i_assert(!cmd->executing);
i_assert(client->output_cmd_lock == NULL);
/* reset input idle time because command output might have taken a
long time and we don't want to disconnect client immediately then */
client->last_input = ioloop_time;
timeout_reset(client->to_idle);
if (cmd->cancel) {
cmd->cancel = FALSE;
client_send_tagline(cmd, "NO Command cancelled.");
}
i_free(client->last_cmd_name);
client->last_cmd_name = i_strdup(cmd->name);
client->last_cmd_stats = cmd->stats;
if (!cmd->param_error)
client->bad_counter = 0;
if (client->input_lock == cmd)
client->input_lock = NULL;
if (client->mailbox_change_lock == cmd)
client->mailbox_change_lock = NULL;
event_set_name(cmd->event, "imap_command_finished");
if (cmd->tagline_reply != NULL) {
event_add_str(cmd->event, "tagged_reply_state",
t_strcut(cmd->tagline_reply, ' '));
event_add_str(cmd->event, "tagged_reply", cmd->tagline_reply);
}
event_add_timeval(cmd->event, "last_run_time",
&cmd->stats.last_run_timeval);
event_add_int(cmd->event, "running_usecs", cmd->stats.running_usecs);
event_add_int(cmd->event, "lock_wait_usecs", cmd->stats.lock_wait_usecs);
event_add_int(cmd->event, "bytes_in", cmd->stats.bytes_in);
event_add_int(cmd->event, "bytes_out", cmd->stats.bytes_out);
e_debug(cmd->event, "Command finished: %s %s", cmd->name,
cmd->human_args != NULL ? cmd->human_args : "");
event_unref(&cmd->event);
event_unref(&cmd->global_event);
if (cmd->parser != NULL) {
if (client->free_parser == NULL) {
imap_parser_reset(cmd->parser);
client->free_parser = cmd->parser;
} else {
imap_parser_unref(&cmd->parser);
}
}
client->command_queue_size--;
DLLIST_REMOVE(&client->command_queue, cmd);
cmd = NULL;
if (client->command_queue == NULL) {
/* no commands left in the queue, we can clear the pool */
p_clear(client->command_pool);
timeout_remove(&client->to_idle_output);
}
imap_client_notify_command_freed(client);
imap_refresh_proctitle();
/* if command finished from external event, check input for more
unhandled commands since we may not be executing from client_input
or client_output. */
if (state == CLIENT_COMMAND_STATE_WAIT_EXTERNAL &&
!client->disconnected) {
client_add_missing_io(client);
io_set_pending(client->io);
}
}
static void client_check_command_hangs(struct client *client)
{
struct client_command_context *cmd;
unsigned int unfinished_count = 0;
bool have_wait_unfinished = FALSE;
for (cmd = client->command_queue; cmd != NULL; cmd = cmd->next) {
switch (cmd->state) {
case CLIENT_COMMAND_STATE_WAIT_INPUT:
/* We need to be reading input for this command.
However, if there is already an output lock for
another command we'll wait for it to finish first.
This is needed because if there are any literals
we'd need to send "+ OK" responses. */
i_assert(client->io != NULL ||
(client->output_cmd_lock != NULL &&
client->output_cmd_lock != client->input_lock));
unfinished_count++;
break;
case CLIENT_COMMAND_STATE_WAIT_OUTPUT:
i_assert((io_loop_find_fd_conditions(current_ioloop, client->fd_out) & IO_WRITE) != 0);
unfinished_count++;
break;
case CLIENT_COMMAND_STATE_WAIT_EXTERNAL:
unfinished_count++;
break;
case CLIENT_COMMAND_STATE_WAIT_UNAMBIGUITY:
have_wait_unfinished = TRUE;
break;
case CLIENT_COMMAND_STATE_WAIT_SYNC:
if ((io_loop_find_fd_conditions(current_ioloop, client->fd_out) & IO_WRITE) == 0)
have_wait_unfinished = TRUE;
else {
/* we have an output callback, which will be
called soon and it'll run cmd_sync_delayed().
FIXME: is this actually wanted? */
}
break;
case CLIENT_COMMAND_STATE_DONE:
i_unreached();
}
}
i_assert(!have_wait_unfinished || unfinished_count > 0);
}
static bool client_remove_pending_unambiguity(struct client *client)
{
if (client->input_lock != NULL) {
/* there's a command that has locked the input */
struct client_command_context *cmd = client->input_lock;
if (cmd->state != CLIENT_COMMAND_STATE_WAIT_UNAMBIGUITY)
return TRUE;
/* the command is waiting for existing ambiguity causing
commands to finish. */
if (client_command_is_ambiguous(cmd)) {
/* we could be waiting for existing sync to finish */
if (!cmd_sync_delayed(client))
return FALSE;
if (client_command_is_ambiguous(cmd))
return FALSE;
}
cmd->state = CLIENT_COMMAND_STATE_WAIT_INPUT;
}
return TRUE;
}
void client_continue_pending_input(struct client *client)
{
i_assert(!client->handling_input);
if (client->disconnected) {
client_destroy(client, NULL);
return;
}
/* this function is called at the end of I/O callbacks (and only there).
fix up the command states and verify that they're correct. */
while (client_remove_pending_unambiguity(client)) {
client_add_missing_io(client);
/* if there's unread data in buffer, handle it. */
if (i_stream_get_data_size(client->input) == 0 ||
client->disconnected)
break;
struct ostream *output = client->output;
o_stream_ref(output);
o_stream_cork(output);
bool ret = client_handle_input(client);
o_stream_uncork(output);
o_stream_unref(&output);
if (!ret)
break;
}
if (client->input->closed || client->output->closed)
client_destroy(client, NULL);
else
client_check_command_hangs(client);
}
/* Skip incoming data until newline is found,
returns TRUE if newline was found. */
static bool client_skip_line(struct client *client)
{
const unsigned char *data;
size_t i, data_size;
data = i_stream_get_data(client->input, &data_size);
for (i = 0; i < data_size; i++) {
if (data[i] == '\n') {
client->input_skip_line = FALSE;
i++;
break;
}
}
i_stream_skip(client->input, i);
return !client->input_skip_line;
}
static void client_idle_output_timeout(struct client *client)
{
client_destroy(client, t_strdup_printf(
"Client has not read server output for for %"PRIdTIME_T" secs",
ioloop_time - client->last_output));
}
bool client_handle_unfinished_cmd(struct client_command_context *cmd)
{
if (cmd->state == CLIENT_COMMAND_STATE_WAIT_INPUT) {
/* need more input */
return FALSE;
}
if (cmd->state != CLIENT_COMMAND_STATE_WAIT_OUTPUT) {
/* waiting for something */
if (cmd->state == CLIENT_COMMAND_STATE_WAIT_SYNC) {
/* this is mainly for APPEND. */
client_add_missing_io(cmd->client);
}
return TRUE;
}
/* output is blocking, we can execute more commands */
o_stream_set_flush_pending(cmd->client->output, TRUE);
if (cmd->client->to_idle_output == NULL) {
/* disconnect sooner if client isn't reading our output */
cmd->client->to_idle_output =
timeout_add(CLIENT_OUTPUT_TIMEOUT_MSECS,
client_idle_output_timeout, cmd->client);
}
return TRUE;
}
static void
client_command_failed_early(struct client_command_context **_cmd,
const char *error)
{
struct client_command_context *cmd = *_cmd;
/* ignore the rest of this line */
cmd->client->input_skip_line = TRUE;
io_loop_time_refresh();
command_stats_start(cmd);
client_send_command_error(cmd, error);
cmd->param_error = TRUE;
client_command_free(_cmd);
}
static bool client_command_input(struct client_command_context *cmd)
{
struct client *client = cmd->client;
struct command *command;
const char *tag, *name;
int ret;
if (cmd->func != NULL) {
/* command is being executed - continue it */
if (command_exec(cmd)) {
/* command execution was finished */
client_command_free(&cmd);
client_add_missing_io(client);
return TRUE;
}
return client_handle_unfinished_cmd(cmd);
}
if (cmd->tag == NULL) {
ret = imap_parser_read_tag(cmd->parser, &tag);
if (ret == 0)
return FALSE; /* need more data */
if (ret < 0) {
client_command_failed_early(&cmd, "Invalid tag.");
return TRUE;
}
cmd->tag = p_strdup(cmd->pool, tag);
}
if (cmd->name == NULL) {
ret = imap_parser_read_command_name(cmd->parser, &name);
if (ret == 0)
return FALSE; /* need more data */
if (ret < 0) {
client_command_failed_early(&cmd, "Invalid command name.");
return TRUE;
}
/* UID commands are a special case. better to handle them
here. */
if (!cmd->uid && strcasecmp(name, "UID") == 0) {
cmd->uid = TRUE;
return client_command_input(cmd);
}
cmd->name = !cmd->uid ? p_strdup(cmd->pool, name) :
p_strconcat(cmd->pool, "UID ", name, NULL);
client_command_init_finished(cmd);
imap_refresh_proctitle();
}
client->input_skip_line = TRUE;
if (cmd->name[0] == '\0') {
/* command not given - cmd->func is already NULL. */
} else if ((command = command_find(cmd->name)) != NULL) {
cmd->func = command->func;
cmd->cmd_flags = command->flags;
/* valid command - overwrite the "unknown" string set earlier */
event_add_str(cmd->global_event, "cmd_name", command->name);
event_strlist_append(cmd->global_event, "reason_code",
event_reason_code_prefix("imap", "cmd_", command->name));
event_add_str(cmd->event, "cmd_name", command->name);
if (client_command_is_ambiguous(cmd)) {
/* do nothing until existing commands are finished */
i_assert(cmd->state == CLIENT_COMMAND_STATE_WAIT_INPUT);
cmd->state = CLIENT_COMMAND_STATE_WAIT_UNAMBIGUITY;
io_remove(&client->io);
return FALSE;
}
}
if (cmd->func == NULL) {
/* unknown command */
client_command_failed_early(&cmd, "Unknown command.");
return TRUE;
} else {
i_assert(!client->disconnected);
return client_command_input(cmd);
}
}
static bool client_handle_next_command(struct client *client, bool *remove_io_r)
{
*remove_io_r = FALSE;
if (client->input_lock != NULL) {
if (client->input_lock->state ==
CLIENT_COMMAND_STATE_WAIT_UNAMBIGUITY ||
/* we can't send literal "+ OK" replies if output is
locked by another command. */
(client->output_cmd_lock != NULL &&
client->output_cmd_lock != client->input_lock)) {
*remove_io_r = TRUE;
return FALSE;
}
return client_command_input(client->input_lock);
}
if (client->input_skip_line) {
/* first eat the previous command line */
if (!client_skip_line(client))
return FALSE;
client->input_skip_line = FALSE;
}
/* don't bother creating a new client command before there's at least
some input */
if (i_stream_get_data_size(client->input) == 0)
return FALSE;
/* beginning a new command */
if (client->command_queue_size >= CLIENT_COMMAND_QUEUE_MAX_SIZE ||
client->output_cmd_lock != NULL) {
/* wait for some of the commands to finish */
*remove_io_r = TRUE;
return FALSE;
}
client->input_lock = client_command_new(client);
return client_command_input(client->input_lock);
}
bool client_handle_input(struct client *client)
{
bool ret, remove_io, handled_commands = FALSE;
i_assert(o_stream_is_corked(client->output) ||
client->output->stream_errno != 0);
i_assert(!client->disconnected);
client->handling_input = TRUE;
do {
T_BEGIN {
ret = client_handle_next_command(client, &remove_io);
} T_END;
if (ret)
handled_commands = TRUE;
} while (ret && !client->disconnected && client->io != NULL);
client->handling_input = FALSE;
if (remove_io)
io_remove(&client->io);
else
client_add_missing_io(client);
if (!handled_commands)
return FALSE;
if (client->input_lock == NULL) {
/* finished handling all commands. sync them all at once now. */
cmd_sync_delayed(client);
} else if (client->input_lock->state == CLIENT_COMMAND_STATE_WAIT_UNAMBIGUITY) {
/* the command may be waiting for previous command to sync. */
cmd_sync_delayed(client);
}
return TRUE;
}
void client_input(struct client *client)
{
struct client_command_context *cmd;
struct ostream *output = client->output;
ssize_t bytes;
i_assert(client->io != NULL);
client->last_input = ioloop_time;
timeout_reset(client->to_idle);
bytes = i_stream_read(client->input);
if (bytes == -1) {
/* disconnected */
client_destroy(client, NULL);
return;
}
o_stream_ref(output);
o_stream_cork(output);
if (!client_handle_input(client) && bytes == -2) {
/* parameter word is longer than max. input buffer size.
this is most likely an error, so skip the new data
until newline is found. */
client->input_skip_line = TRUE;
cmd = client->input_lock != NULL ? client->input_lock :
client_command_new(client);
cmd->param_error = TRUE;
client_send_command_error(cmd, "Too long argument.");
client_command_free(&cmd);
}
o_stream_uncork(output);
o_stream_unref(&output);
imap_refresh_proctitle();
client_continue_pending_input(client);
}
static void client_output_cmd(struct client_command_context *cmd)
{
bool finished;
/* continue processing command */
finished = command_exec(cmd);
if (!finished)
(void)client_handle_unfinished_cmd(cmd);
else {
/* command execution was finished */
client_command_free(&cmd);
}
}
static void client_output_commands(struct client *client)
{
struct client_command_context *cmd;
/* mark all commands non-executed */
for (cmd = client->command_queue; cmd != NULL; cmd = cmd->next)
cmd->temp_executed = FALSE;
if (client->output_cmd_lock != NULL) {
client->output_cmd_lock->temp_executed = TRUE;
client_output_cmd(client->output_cmd_lock);
}
while (client->output_cmd_lock == NULL) {
/* go through the entire commands list every time in case
multiple commands were freed. temp_executed keeps track of
which messages we've called so far */
cmd = client->command_queue;
for (; cmd != NULL; cmd = cmd->next) {
if (!cmd->temp_executed &&
cmd->state == CLIENT_COMMAND_STATE_WAIT_OUTPUT) {
cmd->temp_executed = TRUE;
client_output_cmd(cmd);
break;
}
}
if (cmd == NULL) {
/* all commands executed */
break;
}
}
}
int client_output(struct client *client)
{
int ret;
i_assert(!client->destroyed);
client->last_output = ioloop_time;
timeout_reset(client->to_idle);
if (client->to_idle_output != NULL)
timeout_reset(client->to_idle_output);
if ((ret = o_stream_flush(client->output)) < 0) {
client_destroy(client, NULL);
return 1;
}
client_output_commands(client);
(void)cmd_sync_delayed(client);
imap_refresh_proctitle_delayed();
if (client->output->closed)
client_destroy(client, NULL);
else {
/* corking is added automatically by ostream-file. we need to
uncork here before client_check_command_hangs() is called,
because otherwise it can assert-crash due to ioloop not
having IO_WRITE callback set for the ostream. */
o_stream_uncork(client->output);
client_continue_pending_input(client);
}
return ret;
}
bool client_handle_search_save_ambiguity(struct client_command_context *cmd)
{
struct client_command_context *old_cmd = cmd->next;
/* search only commands that were added before this command
(commands are prepended to the queue, so they're after ourself) */
for (; old_cmd != NULL; old_cmd = old_cmd->next) {
if (old_cmd->search_save_result)
break;
}
if (old_cmd == NULL)
return FALSE;
/* ambiguity, wait until it's over */
i_assert(cmd->state == CLIENT_COMMAND_STATE_WAIT_INPUT);
cmd->client->input_lock = cmd;
cmd->state = CLIENT_COMMAND_STATE_WAIT_UNAMBIGUITY;
cmd->search_save_result_used = TRUE;
io_remove(&cmd->client->io);
return TRUE;
}
void client_enable(struct client *client, unsigned int feature_idx)
{
if (client_has_enabled(client, feature_idx))
return;
const struct imap_feature *feat = imap_feature_idx(feature_idx);
feat->callback(client);
/* set after the callback, so the callback can see what features were
previously set */
bool value = TRUE;
array_idx_set(&client->enabled_features, feature_idx, &value);
}
bool client_has_enabled(struct client *client, unsigned int feature_idx)
{
if (feature_idx >= array_count(&client->enabled_features))
return FALSE;
const bool *featurep =
array_idx(&client->enabled_features, feature_idx);
return *featurep;
}
static void imap_client_enable_condstore(struct client *client)
{
struct mailbox_status status;
int ret;
if (client->mailbox == NULL)
return;
if ((client_enabled_mailbox_features(client) & MAILBOX_FEATURE_CONDSTORE) != 0)
return;
ret = mailbox_enable(client->mailbox, MAILBOX_FEATURE_CONDSTORE);
if (ret == 0) {
/* CONDSTORE being enabled while mailbox is selected.
Notify client of the latest HIGHESTMODSEQ. */
ret = mailbox_get_status(client->mailbox,
STATUS_HIGHESTMODSEQ, &status);
if (ret == 0) {
client_send_line(client, t_strdup_printf(
"* OK [HIGHESTMODSEQ %"PRIu64"] Highest",
status.highest_modseq));
}
}
if (ret < 0) {
client_send_untagged_storage_error(client,
mailbox_get_storage(client->mailbox));
}
}
static void imap_client_enable_qresync(struct client *client)
{
/* enable also CONDSTORE */
client_enable(client, imap_feature_condstore);
}
enum mailbox_feature client_enabled_mailbox_features(struct client *client)
{
enum mailbox_feature mailbox_features = 0;
const struct imap_feature *feature;
const bool *client_enabled;
unsigned int count;
client_enabled = array_get(&client->enabled_features, &count);
for (unsigned int idx = 0; idx < count; idx++) {
if (client_enabled[idx]) {
feature = imap_feature_idx(idx);
mailbox_features |= feature->mailbox_features;
}
}
return mailbox_features;
}
const char *const *client_enabled_features(struct client *client)
{
ARRAY_TYPE(const_string) feature_strings;
const struct imap_feature *feature;
const bool *client_enabled;
unsigned int count;
t_array_init(&feature_strings, 8);
client_enabled = array_get(&client->enabled_features, &count);
for (unsigned int idx = 0; idx < count; idx++) {
if (client_enabled[idx]) {
feature = imap_feature_idx(idx);
array_push_back(&feature_strings, &feature->feature);
}
}
array_append_zero(&feature_strings);
return array_front(&feature_strings);
}
struct imap_search_update *
client_search_update_lookup(struct client *client, const char *tag,
unsigned int *idx_r)
{
struct imap_search_update *updates;
unsigned int i, count;
if (!array_is_created(&client->search_updates))
return NULL;
updates = array_get_modifiable(&client->search_updates, &count);
for (i = 0; i < count; i++) {
if (strcmp(updates[i].tag, tag) == 0) {
*idx_r = i;
return &updates[i];
}
}
return NULL;
}
void client_search_updates_free(struct client *client)
{
struct imap_search_update *update;
if (!array_is_created(&client->search_updates))
return;
array_foreach_modifiable(&client->search_updates, update)
imap_search_update_free(update);
array_clear(&client->search_updates);
}
void clients_init(void)
{
imap_feature_condstore =
imap_feature_register("CONDSTORE", MAILBOX_FEATURE_CONDSTORE,
imap_client_enable_condstore);
imap_feature_qresync =
imap_feature_register("QRESYNC", MAILBOX_FEATURE_CONDSTORE,
imap_client_enable_qresync);
}
void clients_destroy_all(void)
{
while (imap_clients != NULL) {
mail_storage_service_io_activate_user(imap_clients->service_user);
client_send_line(imap_clients, "* BYE Server shutting down.");
client_destroy(imap_clients, "Server shutting down.");
}
}
struct imap_client_vfuncs imap_client_vfuncs = {
.init = client_default_init,
.destroy = client_default_destroy,
.send_tagline = client_default_send_tagline,
.sync_notify_more = client_default_sync_notify_more,
.state_export = imap_state_export_base,
.state_import = imap_state_import_base,
};
|