summaryrefslogblamecommitdiffhomepage
path: root/src/nxt_cycle.c
blob: 4b19f9da80994f1fb96c0bfad55e29bd210afa77 (plain) (tree)
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
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



















                                                                                


                                                                          
                        



                                                                                  









                                                                                

                                                                          











                                                                           
                                                                 






                                                              

                                                                            


















                                                                    




































































                                                                           
                                               



                                                    

                                                                      





























































































































































































































































                                                                           
                                                        





                        
                                       
 
                                                                           
 

                                          
 
                                                             



                                              
                                                                 



                      
                                                                    











                                                              
                                                                           


     
                                      






           
                                



           
                                                             

                                   
                                    

                                          

                       
















                                                                              
                                                                          









                                                                         
                                                                    





                                                             
                                                                      



                   
                                                   




               
                                



           

                                                             







                                                                            
                                    






                                     
                                                 





           
                                                    
 



                       
 
                               












                                                       
                                                                            





                                                                       
                                                          



                     
                                                

               

                                                                         




           
                                                                     

















                                                              
                                          





           
                                                       






                        
                                                                    










                                                   

                                                            

     
                            






                      

                                                                  










                                                                          
                                                                           





















                                                  
                                                                                


























                                                                     

                                                                  








                                   
                          























                                     
                                                                   

















                                                        
                                                             







                                                                    
                                                 










































































































































































































































































































































































































































































                                                                                
                                                                             








                                                      
                                                                    
































































































































































































































































































































                                                                               
                                                                     







                                     
                                                            































































































































































                                                                               

/*
 * Copyright (C) Igor Sysoev
 * Copyright (C) Valentin V. Bartenev
 * Copyright (C) NGINX, Inc.
 */

#include <nxt_main.h>
#include <nxt_cycle.h>
#include <nxt_process_chan.h>
#include <nxt_master_process.h>


static nxt_int_t nxt_cycle_inherited_listen_sockets(nxt_thread_t *thr,
    nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_systemd_listen_sockets(nxt_thread_t *thr,
    nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_event_engines(nxt_thread_t *thr, nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_processes(nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_thread_pools(nxt_thread_t *thr, nxt_cycle_t *cycle);
static void nxt_cycle_start(nxt_task_t *task, void *obj, void *data);
static void nxt_cycle_initial_start(nxt_task_t *task, nxt_cycle_t *cycle);
static void nxt_single_process_start(nxt_thread_t *thr, nxt_task_t *task,
    nxt_cycle_t *cycle);
static void nxt_cycle_close_idle_connections(nxt_thread_t *thr, nxt_task_t *task);
static void nxt_cycle_exit(nxt_task_t *task, void *obj, void *data);
static nxt_int_t nxt_cycle_event_engine_change(nxt_thread_t *thr,
    nxt_task_t *task, nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_conf_init(nxt_thread_t *thr, nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_conf_read_cmd(nxt_thread_t *thr, nxt_cycle_t *cycle);
static nxt_sockaddr_t *nxt_cycle_sockaddr_parse(nxt_str_t *addr,
    nxt_mem_pool_t *mp, nxt_log_t *log);
static nxt_sockaddr_t *nxt_cycle_sockaddr_unix_parse(nxt_str_t *addr,
    nxt_mem_pool_t *mp, nxt_log_t *log);
static nxt_sockaddr_t *nxt_cycle_sockaddr_inet6_parse(nxt_str_t *addr,
    nxt_mem_pool_t *mp, nxt_log_t *log);
static nxt_sockaddr_t *nxt_cycle_sockaddr_inet_parse(nxt_str_t *addr,
    nxt_mem_pool_t *mp, nxt_log_t *log);
static nxt_int_t nxt_cycle_conf_apply(nxt_thread_t *thr, nxt_task_t *task,
    nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_listen_socket(nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_hostname(nxt_thread_t *thr, nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_log_files_init(nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_log_files_create(nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_listen_sockets_create(nxt_cycle_t *cycle);
static void nxt_cycle_listen_sockets_close(nxt_cycle_t *cycle);
static void nxt_cycle_pid_file_delete(nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_shm_zones_enable(nxt_cycle_t *cycle);
static nxt_int_t nxt_cycle_shm_zone_create(nxt_cycle_shm_zone_t *shm_zone);

#if (NXT_THREADS)
static void nxt_cycle_thread_pool_destroy(nxt_thread_t *thr,
    nxt_task_t *task, nxt_cycle_t *cycle, nxt_cycle_cont_t cont);
#endif


nxt_thread_declare_data(nxt_cycle_t *, nxt_thread_cycle_data);


nxt_int_t
nxt_cycle_create(nxt_thread_t *thr, nxt_task_t *task, nxt_cycle_t *previous,
    nxt_cycle_cont_t start, nxt_str_t *config_name)
{
    nxt_int_t           ret;
    nxt_cycle_t         *cycle;
    nxt_array_t         *listen_sockets;
    nxt_mem_pool_t      *mp;
    static nxt_str_t    upstream_zone = nxt_string("upstream_zone");

    mp = nxt_mem_pool_create(1024);

    if (nxt_slow_path(mp == NULL)) {
        return NXT_ERROR;
    }

    /* This alloction cannot fail. */
    cycle = nxt_mem_zalloc(mp, sizeof(nxt_cycle_t));

    cycle->mem_pool = mp;
    cycle->previous = previous;
    cycle->config_name = config_name;

    if (previous == NULL) {
        cycle->prefix = nxt_current_directory(mp);

    } else {
        cycle->type = previous->type;
        cycle->prefix = nxt_str_dup(mp, NULL, previous->prefix);
    }

    if (nxt_slow_path(cycle->prefix == NULL)) {
        goto fail;
    }

    cycle->conf_prefix = cycle->prefix;

    cycle->services = nxt_services_init(mp);
    if (nxt_slow_path(cycle->services == NULL)) {
        goto fail;
    }

    listen_sockets = nxt_array_create(mp, 1, sizeof(nxt_listen_socket_t));
    if (nxt_slow_path(listen_sockets == NULL)) {
        goto fail;
    }

    cycle->listen_sockets = listen_sockets;

    if (previous == NULL) {
        ret = nxt_cycle_inherited_listen_sockets(thr, cycle);
        if (nxt_slow_path(ret != NXT_OK)) {
            goto fail;
        }
    }

    if (nxt_slow_path(nxt_cycle_hostname(thr, cycle) != NXT_OK)) {
        goto fail;
    }

    if (nxt_slow_path(nxt_cycle_log_files_init(cycle) != NXT_OK)) {
        goto fail;
    }

    if (nxt_slow_path(nxt_cycle_event_engines(thr, cycle) != NXT_OK)) {
        goto fail;
    }

    if (nxt_slow_path(nxt_cycle_processes(cycle) != NXT_OK)) {
        goto fail;
    }

    if (nxt_slow_path(nxt_cycle_thread_pools(thr, cycle) != NXT_OK)) {
        goto fail;
    }

    ret = nxt_cycle_shm_zone_add(cycle, &upstream_zone, 1024 * 1024, 8192);
    if (nxt_slow_path(ret != NXT_OK)) {
        goto fail;
    }

    /* Cycle shm zones array is created on demand. */

    if (previous != NULL) {
        previous->reconfiguring = 1;
        cycle->start = start;

    } else {
        nxt_thread_init_data(nxt_thread_cycle_data);
        nxt_thread_cycle_set(cycle);

        cycle->start = nxt_cycle_initial_start;
    }

    nxt_log_debug(thr->log, "new cycle: %p", cycle);

    nxt_work_queue_add(&thr->engine->fast_work_queue, nxt_cycle_start,
                       task, cycle, NULL);

    return NXT_OK;

fail:

    nxt_mem_pool_destroy(mp);

    return NXT_ERROR;
}


static nxt_int_t
nxt_cycle_inherited_listen_sockets(nxt_thread_t *thr, nxt_cycle_t *cycle)
{
    u_char               *v, *p;
    nxt_int_t            type;
    nxt_array_t          *inherited_sockets;
    nxt_socket_t         s;
    nxt_listen_socket_t  *ls;

    v = (u_char *) getenv("NGINX");

    if (v == NULL) {
        return nxt_cycle_systemd_listen_sockets(thr, cycle);
    }

    nxt_log_error(NXT_LOG_NOTICE, thr->log,
                  "using inherited listen sockets: %s", v);

    inherited_sockets = nxt_array_create(cycle->mem_pool,
                                         1, sizeof(nxt_listen_socket_t));
    if (inherited_sockets == NULL) {
        return NXT_ERROR;
    }

    cycle->inherited_sockets = inherited_sockets;

    for (p = v; *p != '\0'; p++) {

        if (*p == ';') {
            s = nxt_int_parse(v, p - v);

            if (nxt_slow_path(s < 0)) {
                nxt_log_emerg(thr->log, "invalid socket number "
                              "\"%s\" in NGINX environment variable, "
                              "ignoring the rest of the variable", v);
                return NXT_ERROR;
            }

            v = p + 1;

            ls = nxt_array_zero_add(inherited_sockets);
            if (nxt_slow_path(ls == NULL)) {
                return NXT_ERROR;
            }

            ls->socket = s;

            ls->sockaddr = nxt_getsockname(cycle->mem_pool, s);
            if (nxt_slow_path(ls->sockaddr == NULL)) {
                return NXT_ERROR;
            }

            type = nxt_socket_getsockopt(s, SOL_SOCKET, SO_TYPE);
            if (nxt_slow_path(type == -1)) {
                return NXT_ERROR;
            }

            ls->sockaddr->type = (uint16_t) type;
        }
    }

    return NXT_OK;
}


static nxt_int_t
nxt_cycle_systemd_listen_sockets(nxt_thread_t *thr, nxt_cycle_t *cycle)
{
    u_char               *nfd, *pid;
    nxt_int_t            n;
    nxt_array_t          *inherited_sockets;
    nxt_socket_t         s;
    nxt_listen_socket_t  *ls;

    /*
     * Number of listening sockets passed.  The socket
     * descriptors start from number 3 and are sequential.
     */
    nfd = (u_char *) getenv("LISTEN_FDS");
    if (nfd == NULL) {
        return NXT_OK;
    }

    /* The pid of the service process. */
    pid = (u_char *) getenv("LISTEN_PID");
    if (pid == NULL) {
        return NXT_OK;
    }

    n = nxt_int_parse(nfd, nxt_strlen(nfd));
    if (n < 0) {
        return NXT_OK;
    }

    if (nxt_pid != nxt_int_parse(pid, nxt_strlen(pid))) {
        return NXT_OK;
    }

    nxt_log_error(NXT_LOG_NOTICE, thr->log,
                  "using %s systemd listen sockets", n);

    inherited_sockets = nxt_array_create(cycle->mem_pool,
                                         n, sizeof(nxt_listen_socket_t));
    if (inherited_sockets == NULL) {
        return NXT_ERROR;
    }

    cycle->inherited_sockets = inherited_sockets;

    for (s = 3; s < n; s++) {
        ls = nxt_array_zero_add(inherited_sockets);
        if (nxt_slow_path(ls == NULL)) {
            return NXT_ERROR;
        }

        ls->socket = s;

        ls->sockaddr = nxt_getsockname(cycle->mem_pool, s);
        if (nxt_slow_path(ls->sockaddr == NULL)) {
            return NXT_ERROR;
        }

        ls->sockaddr->type = SOCK_STREAM;
    }

    return NXT_OK;
}


static nxt_int_t
nxt_cycle_event_engines(nxt_thread_t *thr, nxt_cycle_t *cycle)
{
    nxt_event_engine_t         *engine, **e, **engines;
    const nxt_event_set_ops_t  *event_set;

    cycle->engines = nxt_array_create(cycle->mem_pool, 1,
                                      sizeof(nxt_event_engine_t *));

    if (nxt_slow_path(cycle->engines == NULL)) {
        return NXT_ERROR;
    }

    e = nxt_array_add(cycle->engines);
    if (nxt_slow_path(e == NULL)) {
        return NXT_ERROR;
    }

    if (cycle->previous != NULL) {
        /* Event engines are not allocated in memory pool. */
        engines = cycle->previous->engines->elts;
        *e = engines[0];

    } else {
        event_set = nxt_service_get(cycle->services, "engine", NULL);

        if (nxt_slow_path(event_set == NULL)) {
            /* TODO: log */
            return NXT_ERROR;
        }

        engine = nxt_event_engine_create(thr, event_set,
                                         nxt_master_process_signals, 0, 0);

        if (nxt_slow_path(engine == NULL)) {
            return NXT_ERROR;
        }

        engine->id = cycle->last_engine_id++;
        *e = engine;
    }

    return NXT_OK;
}


static nxt_int_t
nxt_cycle_processes(nxt_cycle_t *cycle)
{
    nxt_uint_t          n;
    nxt_process_chan_t  *proc, *prev;

    /*
     * Preallocate double number of previous cycle
     * process slots or 2 process slots for initial cycle.
     */
    n = (cycle->previous != NULL) ? cycle->previous->processes->nelts : 1;

    cycle->processes = nxt_array_create(cycle->mem_pool, 2 * n,
                                        sizeof(nxt_process_chan_t));

    if (nxt_slow_path(cycle->processes == NULL)) {
        return NXT_ERROR;
    }

    if (cycle->previous != NULL) {
        cycle->process_generation = cycle->previous->process_generation;

        prev = cycle->previous->processes->elts;

        while (n != 0) {
            proc = nxt_array_add(cycle->processes);
            if (nxt_slow_path(proc == NULL)) {
                return NXT_ERROR;
            }

            *proc = *prev++;
            n--;
        }
    }

    return NXT_OK;
}


static nxt_int_t
nxt_cycle_thread_pools(nxt_thread_t *thr, nxt_cycle_t *cycle)
{
#if (NXT_THREADS)
    nxt_int_t    ret;
    nxt_array_t  *thread_pools;

    thread_pools = nxt_array_create(cycle->mem_pool, 1,
                                    sizeof(nxt_thread_pool_t *));

    if (nxt_slow_path(thread_pools == NULL)) {
        return NXT_ERROR;
    }

    cycle->thread_pools = thread_pools;

    ret = nxt_cycle_thread_pool_create(thr, cycle, 2, 60000 * 1000000LL);

    if (nxt_slow_path(ret != NXT_OK)) {
        return NXT_ERROR;
    }

#endif

    return NXT_OK;
}


static void
nxt_cycle_start(nxt_task_t *task, void *obj, void *data)
{
    nxt_uint_t   i;
    nxt_cycle_t  *cycle;

    cycle = obj;

    nxt_debug(task, "cycle conf done");

    nxt_mem_pool_debug_lock(cycle->mem_pool, nxt_thread_tid(task->thread));

    task->thread->log->ctx_handler = NULL;
    task->thread->log->ctx = NULL;

    if (nxt_cycle_conf_init(task->thread, cycle) != NXT_OK) {
        goto fail;
    }

    for (i = 0; i < nxt_init_modules_n; i++) {
        if (nxt_init_modules[i](task->thread, cycle) != NXT_OK) {
            goto fail;
        }
    }

    if (nxt_cycle_conf_apply(task->thread, task, cycle) != NXT_OK) {
        goto fail;
    }

    nxt_thread_cycle_set(cycle);

#if (NXT_THREADS)

    /*
     * Thread pools should be destroyed before starting worker
     * processes, because thread pool semaphores will stick in
     * locked state in new processes after fork().
     */
    nxt_cycle_thread_pool_destroy(task->thread, task, cycle, cycle->start);

#else

    cycle->start(task->thread, cycle);

#endif

    return;

fail:

    nxt_cycle_quit(task, cycle);
}


static void
nxt_cycle_initial_start(nxt_task_t *task, nxt_cycle_t *cycle)
{
    nxt_int_t                  ret;
    nxt_thread_t               *thr;
    const nxt_event_set_ops_t  *event_set;

    thr = task->thread;

    if (cycle->inherited_sockets == NULL && cycle->daemon) {

        if (nxt_process_daemon() != NXT_OK) {
            goto fail;
        }

        /*
         * An event engine should be updated after fork()
         * even if an event facility was not changed because:
         * 1) inherited kqueue descriptor is invalid,
         * 2) the signal thread is not inherited.
         */
        event_set = nxt_service_get(cycle->services, "engine", cycle->engine);
        if (event_set == NULL) {
            goto fail;
        }

        ret = nxt_event_engine_change(thr, task, event_set, cycle->batch);
        if (ret != NXT_OK) {
            goto fail;
        }
    }

    ret = nxt_cycle_pid_file_create(cycle->pid_file, cycle->test_config);
    if (ret != NXT_OK) {
        goto fail;
    }

    if (nxt_cycle_event_engine_change(thr, task, cycle) != NXT_OK) {
        goto fail;
    }

    thr->engine->max_connections = cycle->engine_connections;

    if (cycle->master_process) {
        if (nxt_master_process_start(thr, task, cycle) != NXT_ERROR) {
            return;
        }

    } else {
        nxt_single_process_start(thr, task, cycle);
        return;
    }

fail:

    nxt_cycle_quit(task, cycle);
}


static void
nxt_single_process_start(nxt_thread_t *thr, nxt_task_t *task,
    nxt_cycle_t *cycle)
{
#if (NXT_THREADS)
    nxt_int_t  ret;

    ret = nxt_cycle_thread_pool_create(thr, cycle, cycle->auxiliary_threads,
                                       60000 * 1000000LL);

    if (nxt_slow_path(ret != NXT_OK)) {
        nxt_cycle_quit(task, cycle);
        return;
    }

#endif

    cycle->type = NXT_PROCESS_SINGLE;

    nxt_cycle_listen_sockets_enable(task, cycle);

    return;
}


void
nxt_cycle_quit(nxt_task_t *task, nxt_cycle_t *cycle)
{
    nxt_bool_t    done;
    nxt_thread_t  *thr;

    thr = task->thread;

    nxt_debug(task, "exiting");

    if (cycle == NULL) {
        cycle = nxt_thread_cycle();
    }

    done = 1;

    if (!thr->engine->shutdown) {
        thr->engine->shutdown = 1;

#if (NXT_THREADS)

        if (!nxt_array_is_empty(cycle->thread_pools)) {
            nxt_cycle_thread_pool_destroy(thr, task, cycle, nxt_cycle_quit);
            done = 0;
        }

#endif

        if (!cycle->test_config && cycle->type == NXT_PROCESS_MASTER) {
            nxt_master_stop_worker_processes(task, cycle);
            done = 0;
        }
    }

    nxt_cycle_close_idle_connections(thr, task);

    if (done) {
        nxt_work_queue_add(&thr->engine->fast_work_queue, nxt_cycle_exit,
                           task, cycle, NULL);
    }
}


static void
nxt_cycle_close_idle_connections(nxt_thread_t *thr, nxt_task_t *task)
{
    nxt_queue_t       *idle;
    nxt_queue_link_t  *link, *next;
    nxt_event_conn_t  *c;

    nxt_log_debug(thr->log, "close idle connections");

    idle = &thr->engine->idle_connections;

    for (link = nxt_queue_head(idle);
         link != nxt_queue_tail(idle);
         link = next)
    {
        next = nxt_queue_next(link);
        c = nxt_queue_link_data(link, nxt_event_conn_t, link);

        if (!c->socket.read_ready) {
            nxt_queue_remove(link);
            nxt_event_conn_close(task, c);
        }
    }
}


static void
nxt_cycle_exit(nxt_task_t *task, void *obj, void *data)
{
    nxt_cycle_t  *cycle;

    cycle = obj;

#if (NXT_THREADS)

    nxt_debug(task, "thread pools: %d", cycle->thread_pools->nelts);

    if (!nxt_array_is_empty(cycle->thread_pools)) {
        return;
    }

#endif

    if (cycle->type <= NXT_PROCESS_MASTER) {
        nxt_cycle_pid_file_delete(cycle);
    }

    if (!task->thread->engine->event->signal_support) {
        nxt_event_engine_signals_stop(task->thread->engine);
    }

    nxt_debug(task, "exit");

    exit(0);
    nxt_unreachable();
}


static nxt_int_t
nxt_cycle_event_engine_change(nxt_thread_t *thr, nxt_task_t *task,
    nxt_cycle_t *cycle)
{
    const nxt_event_set_ops_t  *event_set;

    if (thr->engine->batch == cycle->batch
        && nxt_strcmp(thr->engine->event->name, cycle->engine) == 0)
    {
        return NXT_OK;
    }

    event_set = nxt_service_get(cycle->services, "engine", cycle->engine);
    if (event_set != NULL) {
        return nxt_event_engine_change(thr, task, event_set, cycle->batch);
    }

    return NXT_ERROR;
}


void
nxt_cycle_event_engine_free(nxt_cycle_t *cycle)
{
    nxt_event_engine_t      *engine, **engines;

    engines = cycle->engines->elts;
    engine = engines[0];
    nxt_array_remove(cycle->engines, &engines[0]);

    nxt_event_engine_free(engine);
}


#if (NXT_THREADS)

static void nxt_cycle_thread_pool_init(void);
static void nxt_cycle_thread_pool_exit(nxt_task_t *task, void *obj, void *data);


nxt_int_t
nxt_cycle_thread_pool_create(nxt_thread_t *thr, nxt_cycle_t *cycle,
    nxt_uint_t max_threads, nxt_nsec_t timeout)
{
    nxt_thread_pool_t   *thread_pool, **tp;

    tp = nxt_array_add(cycle->thread_pools);
    if (tp == NULL) {
        return NXT_ERROR;
    }

    thread_pool = nxt_thread_pool_create(max_threads, timeout,
                                         nxt_cycle_thread_pool_init,
                                         thr->engine,
                                         nxt_cycle_thread_pool_exit);

    if (nxt_fast_path(thread_pool != NULL)) {
        *tp = thread_pool;
    }

    return NXT_OK;
}


static void
nxt_cycle_thread_pool_destroy(nxt_thread_t *thr, nxt_task_t *task,
    nxt_cycle_t *cycle, nxt_cycle_cont_t cont)
{
    nxt_uint_t         n;
    nxt_thread_pool_t  **tp;

    cycle->continuation = cont;

    n = cycle->thread_pools->nelts;

    if (n == 0) {
        cont(task, cycle);
        return;
    }

    tp = cycle->thread_pools->elts;

    do {
        nxt_thread_pool_destroy(*tp);

        tp++;
        n--;
    } while (n != 0);
}


static void
nxt_cycle_thread_pool_init(void)
{
#if (NXT_REGEX)
    nxt_regex_init(0);
#endif
}


static void
nxt_cycle_thread_pool_exit(nxt_task_t *task, void *obj, void *data)
{
    nxt_uint_t           i, n;
    nxt_cycle_t          *cycle;
    nxt_thread_pool_t    *tp, **thread_pools;
    nxt_thread_handle_t  handle;

    tp = obj;

    if (data != NULL) {
        handle = (nxt_thread_handle_t) (uintptr_t) data;
        nxt_thread_wait(handle);
    }

    cycle = nxt_thread_cycle();

    thread_pools = cycle->thread_pools->elts;
    n = cycle->thread_pools->nelts;

    nxt_debug(task, "thread pools: %ui, cycle %p", n, cycle);

    for (i = 0; i < n; i++) {

        if (tp == thread_pools[i]) {
            nxt_array_remove(cycle->thread_pools, &thread_pools[i]);

            if (n == 1) {
                /* The last thread pool. */
                cycle->continuation(task, cycle);
            }

            return;
        }
    }
}

#endif


static nxt_int_t
nxt_cycle_conf_init(nxt_thread_t *thr, nxt_cycle_t *cycle)
{
    nxt_int_t                  ret;
    nxt_str_t                  *prefix;
    nxt_file_t                 *file;
    nxt_file_name_str_t        file_name;
    const nxt_event_set_ops_t  *event_set;

    cycle->daemon = 1;
    cycle->master_process = 1;
    cycle->engine_connections = 256;
    cycle->worker_processes = 1;
    cycle->auxiliary_threads = 2;
    cycle->user_cred.user = "nobody";
    cycle->group = NULL;
    cycle->pid = "nginman.pid";
    cycle->error_log = "error.log";

    if (nxt_cycle_conf_read_cmd(thr, cycle) != NXT_OK) {
        return NXT_ERROR;
    }

    if (nxt_user_cred_get(&cycle->user_cred, cycle->group) != NXT_OK) {
        return NXT_ERROR;
    }

    /* An engine's parameters. */

    event_set = nxt_service_get(cycle->services, "engine", cycle->engine);
    if (event_set == NULL) {
        return NXT_ERROR;
    }

    cycle->engine = event_set->name;

    prefix = nxt_file_name_is_absolute(cycle->pid) ? NULL : cycle->prefix;

    ret = nxt_file_name_create(cycle->mem_pool, &file_name, "%V%s%Z",
                               prefix, cycle->pid);
    if (nxt_slow_path(ret != NXT_OK)) {
        return NXT_ERROR;
    }

    cycle->pid_file = file_name.start;

    prefix = nxt_file_name_is_absolute(cycle->error_log) ? NULL : cycle->prefix;

    ret = nxt_file_name_create(cycle->mem_pool, &file_name, "%V%s%Z",
                               prefix, cycle->error_log);
    if (nxt_slow_path(ret != NXT_OK)) {
        return NXT_ERROR;
    }

    file = nxt_list_first(cycle->log_files);
    file->name = file_name.start;

    return NXT_OK;
}


static nxt_int_t
nxt_cycle_conf_read_cmd(nxt_thread_t *thr, nxt_cycle_t *cycle)
{
    char            *p, **argv;
    nxt_int_t       n;
    nxt_str_t       addr;
    nxt_sockaddr_t  *sa;

    argv = nxt_process_argv;

    while (*argv != NULL) {
        p = *argv++;

        if (nxt_strcmp(p, "--listen") == 0) {
            if (*argv == NULL) {
                nxt_log_emerg(thr->log, "no argument for option \"--listen\"");
                return NXT_ERROR;
            }

            p = *argv++;

            addr.len = nxt_strlen(p);
            addr.data = (u_char *) p;

            sa = nxt_cycle_sockaddr_parse(&addr, cycle->mem_pool, thr->log);

            if (sa == NULL) {
                return NXT_ERROR;
            }

            cycle->listen = sa;

            continue;
        }

        if (nxt_strcmp(p, "--workers") == 0) {
            if (*argv == NULL) {
                nxt_log_emerg(thr->log, "no argument for option \"--workers\"");
                return NXT_ERROR;
            }

            p = *argv++;
            n = nxt_int_parse((u_char *) p, nxt_strlen(p));

            if (n < 1) {
                nxt_log_emerg(thr->log, "invalid number of workers: \"%s\"", p);
                return NXT_ERROR;
            }

            cycle->worker_processes = n;

            continue;
        }

        if (nxt_strcmp(p, "--user") == 0) {
            if (*argv == NULL) {
                nxt_log_emerg(thr->log, "no argument for option \"--user\"");
                return NXT_ERROR;
            }

            p = *argv++;

            cycle->user_cred.user = p;

            continue;
        }

        if (nxt_strcmp(p, "--group") == 0) {
            if (*argv == NULL) {
                nxt_log_emerg(thr->log, "no argument for option \"--group\"");
                return NXT_ERROR;
            }

            p = *argv++;

            cycle->group = p;

            continue;
        }

        if (nxt_strcmp(p, "--pid") == 0) {
            if (*argv == NULL) {
                nxt_log_emerg(thr->log, "no argument for option \"--pid\"");
                return NXT_ERROR;
            }

            p = *argv++;

            cycle->pid = p;

            continue;
        }

        if (nxt_strcmp(p, "--log") == 0) {
            if (*argv == NULL) {
                nxt_log_emerg(thr->log, "no argument for option \"--log\"");
                return NXT_ERROR;
            }

            p = *argv++;

            cycle->error_log = p;

            continue;
        }

        if (nxt_strcmp(p, "--no-daemonize") == 0) {
            cycle->daemon = 0;
            continue;
        }
    }

    return NXT_OK;
}


static nxt_sockaddr_t *
nxt_cycle_sockaddr_parse(nxt_str_t *addr, nxt_mem_pool_t *mp, nxt_log_t *log)
{
    u_char  *p;
    size_t  len;

    len = addr->len;
    p = addr->data;

    if (len >= 5 && nxt_memcmp(p, (u_char *) "unix:", 5) == 0) {
        return nxt_cycle_sockaddr_unix_parse(addr, mp, log);
    }

    if (len != 0 && *p == '[') {
        return nxt_cycle_sockaddr_inet6_parse(addr, mp, log);
    }

    return nxt_cycle_sockaddr_inet_parse(addr, mp, log);
}


static nxt_sockaddr_t *
nxt_cycle_sockaddr_unix_parse(nxt_str_t *addr, nxt_mem_pool_t *mp,
    nxt_log_t *log)
{
#if (NXT_HAVE_UNIX_DOMAIN)
    u_char          *p;
    size_t          len, socklen;
    nxt_sockaddr_t  *sa;

    /*
     * Actual sockaddr_un length can be lesser or even larger than defined
     * struct sockaddr_un length (see comment in unix/nxt_socket.h).  So
     * limit maximum Unix domain socket address length by defined sun_path[]
     * length because some OSes accept addresses twice larger than defined
     * struct sockaddr_un.  Also reserve space for a trailing zero to avoid
     * ambiguity, since many OSes accept Unix domain socket addresses
     * without a trailing zero.
     */
    const size_t max_len = sizeof(struct sockaddr_un)
                           - offsetof(struct sockaddr_un, sun_path) - 1;

    /* cutting "unix:" */
    len = addr->len - 5;
    p = addr->data + 5;

    if (len == 0) {
        nxt_log_emerg(log, "unix domain socket \"%V\" name is invalid", addr);
        return NULL;
    }

    if (len > max_len) {
        nxt_log_emerg(log, "unix domain socket \"%V\" name is too long", addr);
        return NULL;
    }

    socklen = offsetof(struct sockaddr_un, sun_path) + len + 1;

#if (NXT_LINUX)

    /*
     * Linux unix(7):
     *
     *   abstract: an abstract socket address is distinguished by the fact
     *   that sun_path[0] is a null byte ('\0').  The socket's address in
     *   this namespace is given by the additional bytes in sun_path that
     *   are covered by the specified length of the address structure.
     *   (Null bytes in the name have no special significance.)
     */
    if (p[0] == '@') {
        p[0] = '\0';
        socklen--;
    }

#endif

    sa = nxt_sockaddr_alloc(mp, socklen);

    if (nxt_slow_path(sa == NULL)) {
        return NULL;
    }

    sa->type = SOCK_STREAM;

    sa->u.sockaddr_un.sun_family = AF_UNIX;
    nxt_memcpy(sa->u.sockaddr_un.sun_path, p, len);

    return sa;

#else  /* !(NXT_HAVE_UNIX_DOMAIN) */

    nxt_log_emerg(log, "unix domain socket \"%V\" is not supported", addr);

    return NULL;

#endif
}


static nxt_sockaddr_t *
nxt_cycle_sockaddr_inet6_parse(nxt_str_t *addr, nxt_mem_pool_t *mp,
    nxt_log_t *log)
{
#if (NXT_INET6)
    u_char           *p, *addr, *addr_end;
    size_t           len;
    nxt_int_t        port;
    nxt_mem_pool_t   *mp;
    nxt_sockaddr_t   *sa;
    struct in6_addr  *in6_addr;

    len = addr->len - 1;
    p = addr->data + 1;

    addr_end = nxt_memchr(p, ']', len);

    if (addr_end == NULL) {
        goto invalid_address;
    }

    sa = nxt_sockaddr_alloc(mp, sizeof(struct sockaddr_in6));

    if (nxt_slow_path(sa == NULL)) {
        return NULL;
    }

    in6_addr = &sa->u.sockaddr_in6.sin6_addr;

    if (nxt_inet6_addr(in6_addr, p, addr_end - p) != NXT_OK) {
        goto invalid_address;
    }

    p = addr_end + 1;
    len = (p + len) - p;

    if (len == 0) {
        goto found;
    }

    if (*p == ':') {
        port = nxt_int_parse(p + 1, len - 1);

        if (port >= 1 && port <= 65535) {
            goto found;
        }
    }

    nxt_log_emerg(log, "invalid port in \"%V\"", addr);

    return NULL;

found:

    sa->type = SOCK_STREAM;

    sa->u.sockaddr_in6.sin6_family = AF_INET6;
    sa->u.sockaddr_in6.sin6_port = htons((in_port_t) port);

    return sa;

invalid_address:

    nxt_log_emerg(log, "invalid IPv6 address in \"%V\"", addr);

    return NULL;

#else

    nxt_log_emerg(log, "IPv6 socket \"%V\" is not supported", addr);

    return NULL;

#endif
}


static nxt_sockaddr_t *
nxt_cycle_sockaddr_inet_parse(nxt_str_t *addr, nxt_mem_pool_t *mp,
    nxt_log_t *log)
{
    u_char          *p, *ip;
    size_t          len;
    in_addr_t       s_addr;
    nxt_int_t       port;
    nxt_sockaddr_t  *sa;

    s_addr = INADDR_ANY;

    len = addr->len;
    ip = addr->data;

    p = nxt_memchr(ip, ':', len);

    if (p == NULL) {

        /* single value port, or address */

        port = nxt_int_parse(ip, len);

        if (port > 0) {
            /* "*:XX" */

            if (port < 1 || port > 65535) {
                goto invalid_port;
            }

        } else {
            /* "x.x.x.x" */

            s_addr = nxt_inet_addr(ip, len);

            if (s_addr == INADDR_NONE) {
                goto invalid_port;
            }

            port = 8080;
        }

    } else {

        /* x.x.x.x:XX */

        p++;
        len = (ip + len) - p;
        port = nxt_int_parse(p, len);

        if (port < 1 || port > 65535) {
            goto invalid_port;
        }

        len = (p - 1) - ip;

        if (len != 1 || ip[0] != '*') {
            s_addr = nxt_inet_addr(ip, len);

            if (s_addr == INADDR_NONE) {
                goto invalid_addr;
            }

            /* "x.x.x.x:XX" */
        }
    }

    sa = nxt_sockaddr_alloc(mp, sizeof(struct sockaddr_in));

    if (nxt_slow_path(sa == NULL)) {
        return NULL;
    }

    sa->type = SOCK_STREAM;

    sa->u.sockaddr_in.sin_family = AF_INET;
    sa->u.sockaddr_in.sin_port = htons((in_port_t) port);
    sa->u.sockaddr_in.sin_addr.s_addr = s_addr;

    return sa;

invalid_port:

    nxt_log_emerg(log, "invalid port in \"%V\"", addr);

    return NULL;

invalid_addr:

    nxt_log_emerg(log, "invalid address in \"%V\"", addr);

    return NULL;
}


static nxt_int_t
nxt_cycle_conf_apply(nxt_thread_t *thr, nxt_task_t *task, nxt_cycle_t *cycle)
{
    if (nxt_cycle_log_files_create(cycle) != NXT_OK) {
        return NXT_ERROR;
    }

    if (nxt_cycle_listen_socket(cycle) != NXT_OK) {
        return NXT_ERROR;
    }

    if (nxt_cycle_event_engine_change(thr, task, cycle) != NXT_OK) {
        return NXT_ERROR;
    }

    if (nxt_cycle_listen_sockets_create(cycle) != NXT_OK) {
        return NXT_ERROR;
    }

    if (nxt_cycle_shm_zones_enable(cycle) != NXT_OK) {
        return NXT_ERROR;
    }

    nxt_cycle_listen_sockets_close(cycle);

    return NXT_OK;
}


static nxt_int_t
nxt_cycle_listen_socket(nxt_cycle_t *cycle)
{
    nxt_sockaddr_t       *sa;
//    nxt_work_queue_t     *wq;
    nxt_listen_socket_t  *ls;

    if (cycle->listen == NULL) {
        sa = nxt_sockaddr_alloc(cycle->mem_pool, sizeof(struct sockaddr_in));
        if (sa == NULL) {
            return NXT_ERROR;
        }

        sa->type = SOCK_STREAM;
        sa->u.sockaddr_in.sin_family = AF_INET;
        sa->u.sockaddr_in.sin_port = htons(8080);

        cycle->listen = sa;
    }

    if (nxt_sockaddr_text(cycle->mem_pool, cycle->listen, 1) != NXT_OK) {
        return NXT_ERROR;
    }

    ls = nxt_cycle_listen_socket_add(cycle, cycle->listen);
    if (ls == NULL) {
        return NXT_ERROR;
    }

    ls->read_after_accept = 1;

#if 0
    ls->flags = NXT_NONBLOCK;

    /* STUB */
    wq = nxt_mem_zalloc(cf->mem_pool, sizeof(nxt_work_queue_t));
    if (wq == NULL) {
        return NXT_ERROR;
    }
    nxt_work_queue_name(wq, "listen");
    /**/

    ls->work_queue = wq;
    ls->handler = nxt_stream_connection_init;

    /*
     * Connection memory pool chunk size is tunned to
     * allocate the most data in one mem_pool chunk.
     */
    ls->mem_pool_size = nxt_listen_socket_pool_min_size(ls)
                        + sizeof(nxt_event_conn_proxy_t)
                        + sizeof(nxt_event_conn_t)
                        + 4 * sizeof(nxt_buf_t);
#endif

    return NXT_OK;
}


nxt_listen_socket_t *
nxt_cycle_listen_socket_add(nxt_cycle_t *cycle, nxt_sockaddr_t *sa)
{
    nxt_mem_pool_t       *mp;
    nxt_listen_socket_t  *ls;

    ls = nxt_array_zero_add(cycle->listen_sockets);
    if (ls == NULL) {
        return NULL;
    }

    mp = cycle->mem_pool;

    ls->sockaddr = nxt_sockaddr_create(mp, &sa->u.sockaddr, nxt_socklen(sa));
    if (ls->sockaddr == NULL) {
        return NULL;
    }

    ls->sockaddr->type = sa->type;

    if (nxt_sockaddr_text(mp, ls->sockaddr, 1) != NXT_OK) {
        return NULL;
    }

    ls->socket = -1;
    ls->backlog = NXT_LISTEN_BACKLOG;

    return ls;
}


static nxt_int_t
nxt_cycle_hostname(nxt_thread_t *thr, nxt_cycle_t *cycle)
{
    size_t  len;
    char    hostname[NXT_MAXHOSTNAMELEN + 1];

    if (gethostname(hostname, NXT_MAXHOSTNAMELEN) != 0) {
        nxt_log_emerg(thr->log, "gethostname() failed %E", nxt_errno);
        return NXT_ERROR;
    }

    /*
     * Linux gethostname(2):
     *
     *    If the null-terminated hostname is too large to fit,
     *    then the name is truncated, and no error is returned.
     *
     * For this reason an additional byte is reserved in the buffer.
     */
    hostname[NXT_MAXHOSTNAMELEN] = '\0';

    len = nxt_strlen(hostname);
    cycle->hostname.len = len;

    cycle->hostname.data = nxt_mem_nalloc(cycle->mem_pool, len);

    if (cycle->hostname.data != NULL) {
        nxt_memcpy_lowcase(cycle->hostname.data, (u_char *) hostname, len);
        return NXT_OK;
    }

    return NXT_ERROR;
}


static nxt_int_t
nxt_cycle_log_files_init(nxt_cycle_t *cycle)
{
    nxt_uint_t  n;
    nxt_file_t  *file;
    nxt_list_t  *log_files;

    n = (cycle->previous != NULL) ? nxt_list_nelts(cycle->previous->log_files):
                                    1;

    log_files = nxt_list_create(cycle->mem_pool, n, sizeof(nxt_file_t));

    if (nxt_fast_path(log_files != NULL)) {
        cycle->log_files = log_files;

        /* Preallocate the main error_log.  This allocation cannot fail. */
        file = nxt_list_zero_add(log_files);

        file->fd = NXT_FILE_INVALID;
        file->log_level = NXT_LOG_CRIT;

        return NXT_OK;
    }

    return NXT_ERROR;
}


nxt_file_t *
nxt_cycle_log_file_add(nxt_cycle_t *cycle, nxt_str_t *name)
{
    nxt_int_t            ret;
    nxt_str_t            *prefix;
    nxt_file_t           *file;
    nxt_file_name_str_t  file_name;

    prefix = nxt_file_name_is_absolute(name->data) ? NULL : cycle->prefix;

    ret = nxt_file_name_create(cycle->mem_pool, &file_name, "%V%V%Z",
                               prefix, name);

    if (nxt_slow_path(ret != NXT_OK)) {
        return NULL;
    }

    nxt_list_each(file, cycle->log_files) {

        /* STUB: hardecoded case sensitive/insensitive. */

        if (file->name != NULL
            && nxt_file_name_eq(file->name, file_name.start))
        {
            return file;
        }

    } nxt_list_loop;

    file = nxt_list_zero_add(cycle->log_files);

    if (nxt_slow_path(file == NULL)) {
        return NULL;
    }

    file->fd = NXT_FILE_INVALID;
    file->log_level = NXT_LOG_CRIT;
    file->name = file_name.start;

    return file;
}


static nxt_int_t
nxt_cycle_log_files_create(nxt_cycle_t *cycle)
{
    nxt_int_t   ret;
    nxt_file_t  *file;

    nxt_list_each(file, cycle->log_files) {

        ret = nxt_file_open(file, NXT_FILE_APPEND, NXT_FILE_CREATE_OR_OPEN,
                            NXT_FILE_OWNER_ACCESS);

        if (ret != NXT_OK) {
            return NXT_ERROR;
        }

    } nxt_list_loop;

    file = nxt_list_first(cycle->log_files);

    return nxt_file_stderr(file);
}


static nxt_int_t
nxt_cycle_listen_sockets_create(nxt_cycle_t *cycle)
{
    nxt_uint_t           c, p, ncurr, nprev;
    nxt_listen_socket_t  *curr, *prev;

    curr = cycle->listen_sockets->elts;
    ncurr = cycle->listen_sockets->nelts;

    if (cycle->previous != NULL) {
        prev = cycle->previous->listen_sockets->elts;
        nprev = cycle->previous->listen_sockets->nelts;

    } else if (cycle->inherited_sockets != NULL) {
        prev = cycle->inherited_sockets->elts;
        nprev = cycle->inherited_sockets->nelts;

    } else {
        prev = NULL;
        nprev = 0;
    }

    for (c = 0; c < ncurr; c++) {

        for (p = 0; p < nprev; p++) {

            if (nxt_sockaddr_cmp(curr[c].sockaddr, prev[p].sockaddr)) {

                if (nxt_listen_socket_update(&curr[c], &prev[p]) != NXT_OK) {
                    return NXT_ERROR;
                }

                goto next;
            }
        }

        if (nxt_listen_socket_create(&curr[c], cycle->test_config) != NXT_OK) {
            return NXT_ERROR;
        }

    next:

        continue;
    }

    return NXT_OK;
}


static void
nxt_cycle_listen_sockets_close(nxt_cycle_t *cycle)
{
    nxt_uint_t           p, c, nprev, ncurr;
    nxt_listen_socket_t  *curr, *prev;

    if (cycle->previous == NULL) {
        return;
    }

    prev = cycle->previous->listen_sockets->elts;
    nprev = cycle->previous->listen_sockets->nelts;

    curr = cycle->listen_sockets->elts;
    ncurr = cycle->listen_sockets->nelts;

    for (p = 0; p < nprev; p++) {

        for (c = 0; c < ncurr; c++) {
            if (nxt_sockaddr_cmp(prev[p].sockaddr, curr[c].sockaddr)) {
                goto next;
            }
        }

        nxt_socket_close(prev[p].socket);

    next:

        continue;
    }

    return;
}


nxt_int_t
nxt_cycle_listen_sockets_enable(nxt_task_t *task, nxt_cycle_t *cycle)
{
    nxt_uint_t           i, n;
    nxt_listen_socket_t  *ls;

    ls = cycle->listen_sockets->elts;
    n = cycle->listen_sockets->nelts;

    for (i = 0; i < n; i++) {
        if (nxt_event_conn_listen(task, &ls[i]) != NXT_OK) {
            return NXT_ERROR;
        }
    }

    return NXT_OK;
}


nxt_str_t *
nxt_current_directory(nxt_mem_pool_t *mp)
{
    size_t     len;
    u_char     *p;
    nxt_str_t  *name;
    char       buf[NXT_MAX_PATH_LEN];

    len = nxt_dir_current(buf, NXT_MAX_PATH_LEN);

    if (nxt_fast_path(len != 0)) {
        name = nxt_str_alloc(mp, len + 1);

        if (nxt_fast_path(name != NULL)) {
            p = nxt_cpymem(name->data, buf, len);
            *p = '/';

            return name;
        }
    }

    return NULL;
}


nxt_int_t
nxt_cycle_pid_file_create(nxt_file_name_t *pid_file, nxt_bool_t test)
{
    ssize_t     len;
    nxt_int_t   n;
    nxt_uint_t  create;
    nxt_file_t  file;
    u_char      pid[NXT_INT64_T_LEN + NXT_LINEFEED_SIZE];

    nxt_memzero(&file, sizeof(nxt_file_t));

    file.name = pid_file;

    create = test ? NXT_FILE_CREATE_OR_OPEN : NXT_FILE_TRUNCATE;

    n = nxt_file_open(&file, NXT_FILE_WRONLY, create, NXT_FILE_DEFAULT_ACCESS);

    if (n != NXT_OK) {
        return NXT_ERROR;
    }

    if (!test) {
        len = nxt_sprintf(pid, pid + sizeof(pid), "%PI%n", nxt_pid) - pid;

        if (nxt_file_write(&file, pid, len, 0) != len) {
            return NXT_ERROR;
        }
    }

    nxt_file_close(&file);

    return NXT_OK;
}


static void
nxt_cycle_pid_file_delete(nxt_cycle_t *cycle)
{
    nxt_file_name_t  *pid_file;

    if (!cycle->test_config) {
        pid_file = (cycle->new_binary != 0) ? cycle->oldbin_file:
                                              cycle->pid_file;
        if (pid_file != NULL) {
            nxt_file_delete(pid_file);
        }
    }
}


nxt_int_t
nxt_cycle_shm_zone_add(nxt_cycle_t *cycle, nxt_str_t *name, size_t size,
    nxt_uint_t page_size)
{
    nxt_cycle_shm_zone_t  *shm_zone;

    if (cycle->shm_zones == NULL) {
        cycle->shm_zones = nxt_array_create(cycle->mem_pool, 1,
                                            sizeof(nxt_cycle_shm_zone_t));
        if (cycle->shm_zones == NULL) {
            return NXT_ERROR;
        }
    }

    shm_zone = nxt_array_add(cycle->shm_zones);

    if (shm_zone != NULL) {
        shm_zone->size = size;
        shm_zone->page_size = page_size;
        shm_zone->name = *name;

        return NXT_OK;
    }

    return NXT_ERROR;
}


static nxt_int_t
nxt_cycle_shm_zones_enable(nxt_cycle_t *cycle)
{
    nxt_uint_t            i, n;
    nxt_cycle_shm_zone_t  *shm_zone;

    if (cycle->shm_zones != NULL) {
        shm_zone = cycle->shm_zones->elts;
        n = cycle->shm_zones->nelts;

        for (i = 0; i < n; i++) {
            if (nxt_cycle_shm_zone_create(&shm_zone[i]) != NXT_OK) {
                return NXT_ERROR;
            }
        }
    }

    return NXT_OK;
}


static nxt_int_t
nxt_cycle_shm_zone_create(nxt_cycle_shm_zone_t *shm_zone)
{
    nxt_mem_zone_t  *zone;

    /*
     * Unix-only code because Windows ASLR maps shared memory segments at
     * different addresses in different processes.  Unix ASLR does not affect
     * this because all shared memory segments are inherited during fork().
     */

    shm_zone->addr = nxt_mem_mmap(NULL, shm_zone->size,
                                  NXT_MEM_MAP_READ | NXT_MEM_MAP_WRITE,
                                  NXT_MEM_MAP_SHARED, NXT_FILE_INVALID, 0);

    if (shm_zone->addr != NXT_MEM_MAP_FAILED) {

        zone = nxt_mem_zone_init(shm_zone->addr, shm_zone->size,
                                 shm_zone->page_size);
        if (zone != NULL) {
            return NXT_OK;
        }

        nxt_mem_munmap(shm_zone->addr, shm_zone->size);
    }

    return NXT_ERROR;
}