blob: abd9af7727ad33b43e5e4fce8949209a0e2a0b19 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil2f2dc052009-10-06 11:31:09 -07003
4#include <linux/bug.h>
5#include <linux/err.h>
6#include <linux/random.h>
7#include <linux/slab.h>
8#include <linux/types.h>
9
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070010#include <linux/ceph/mdsmap.h>
11#include <linux/ceph/messenger.h>
12#include <linux/ceph/decode.h>
Sage Weil2f2dc052009-10-06 11:31:09 -070013
14#include "super.h"
15
Xiubo Li5d476482019-11-26 07:24:22 -050016#define CEPH_MDS_IS_READY(i, ignore_laggy) \
Xiubo Lib38c9eb2019-12-04 06:57:39 -050017 (m->m_info[i].state > 0 && ignore_laggy ? true : !m->m_info[i].laggy)
Sage Weil2f2dc052009-10-06 11:31:09 -070018
Xiubo Li5d476482019-11-26 07:24:22 -050019static int __mdsmap_get_random_mds(struct ceph_mdsmap *m, bool ignore_laggy)
Sage Weil2f2dc052009-10-06 11:31:09 -070020{
21 int n = 0;
Xiubo Li74d6f032019-11-11 06:51:05 -050022 int i, j;
Sam Langa84cd292013-04-09 16:49:11 -050023
Sage Weil2f2dc052009-10-06 11:31:09 -070024 /* count */
Xiubo Lib38c9eb2019-12-04 06:57:39 -050025 for (i = 0; i < m->possible_max_rank; i++)
Xiubo Li5d476482019-11-26 07:24:22 -050026 if (CEPH_MDS_IS_READY(i, ignore_laggy))
Sage Weil2f2dc052009-10-06 11:31:09 -070027 n++;
28 if (n == 0)
29 return -1;
30
31 /* pick */
Sam Langa84cd292013-04-09 16:49:11 -050032 n = prandom_u32() % n;
Xiubo Lib38c9eb2019-12-04 06:57:39 -050033 for (j = 0, i = 0; i < m->possible_max_rank; i++) {
Xiubo Li5d476482019-11-26 07:24:22 -050034 if (CEPH_MDS_IS_READY(i, ignore_laggy))
Xiubo Li74d6f032019-11-11 06:51:05 -050035 j++;
36 if (j > n)
37 break;
38 }
Sage Weil2f2dc052009-10-06 11:31:09 -070039
40 return i;
41}
42
Xiubo Li5d476482019-11-26 07:24:22 -050043/*
44 * choose a random mds that is "up" (i.e. has a state > 0), or -1.
45 */
46int ceph_mdsmap_get_random_mds(struct ceph_mdsmap *m)
47{
48 int mds;
49
50 mds = __mdsmap_get_random_mds(m, false);
Xiubo Lib38c9eb2019-12-04 06:57:39 -050051 if (mds == m->possible_max_rank || mds == -1)
Xiubo Li5d476482019-11-26 07:24:22 -050052 mds = __mdsmap_get_random_mds(m, true);
53
Xiubo Lib38c9eb2019-12-04 06:57:39 -050054 return mds == m->possible_max_rank ? -1 : mds;
Xiubo Li5d476482019-11-26 07:24:22 -050055}
56
Yan, Zhenge9e427f2016-11-10 16:02:06 +080057#define __decode_and_drop_type(p, end, type, bad) \
58 do { \
59 if (*p + sizeof(type) > end) \
60 goto bad; \
61 *p += sizeof(type); \
62 } while (0)
63
64#define __decode_and_drop_set(p, end, type, bad) \
65 do { \
66 u32 n; \
67 size_t need; \
68 ceph_decode_32_safe(p, end, n, bad); \
69 need = sizeof(type) * n; \
70 ceph_decode_need(p, end, need, bad); \
71 *p += need; \
72 } while (0)
73
74#define __decode_and_drop_map(p, end, ktype, vtype, bad) \
75 do { \
76 u32 n; \
77 size_t need; \
78 ceph_decode_32_safe(p, end, n, bad); \
79 need = (sizeof(ktype) + sizeof(vtype)) * n; \
80 ceph_decode_need(p, end, need, bad); \
81 *p += need; \
82 } while (0)
83
84
85static int __decode_and_drop_compat_set(void **p, void* end)
86{
87 int i;
88 /* compat, ro_compat, incompat*/
89 for (i = 0; i < 3; i++) {
90 u32 n;
91 ceph_decode_need(p, end, sizeof(u64) + sizeof(u32), bad);
92 /* mask */
93 *p += sizeof(u64);
94 /* names (map<u64, string>) */
95 n = ceph_decode_32(p);
96 while (n-- > 0) {
97 u32 len;
98 ceph_decode_need(p, end, sizeof(u64) + sizeof(u32),
99 bad);
100 *p += sizeof(u64);
101 len = ceph_decode_32(p);
102 ceph_decode_need(p, end, len, bad);
103 *p += len;
104 }
105 }
106 return 0;
107bad:
108 return -1;
109}
110
Sage Weil2f2dc052009-10-06 11:31:09 -0700111/*
112 * Decode an MDS map
113 *
114 * Ignore any fields we don't care about (there are quite a few of
115 * them).
116 */
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +0100117struct ceph_mdsmap *ceph_mdsmap_decode(void **p, void *end, bool msgr2)
Sage Weil2f2dc052009-10-06 11:31:09 -0700118{
119 struct ceph_mdsmap *m;
Sage Weil9ec7cab2009-12-14 15:13:47 -0800120 const void *start = *p;
Sage Weil2f2dc052009-10-06 11:31:09 -0700121 int i, j, n;
Jeff Laytonf3848af2019-06-04 11:26:36 -0400122 int err;
Jia Yang8e298de2020-07-23 10:25:52 +0800123 u8 mdsmap_v;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800124 u16 mdsmap_ev;
Sage Weil2f2dc052009-10-06 11:31:09 -0700125
126 m = kzalloc(sizeof(*m), GFP_NOFS);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200127 if (!m)
Sage Weil2f2dc052009-10-06 11:31:09 -0700128 return ERR_PTR(-ENOMEM);
129
Yan, Zhengd463a432016-03-31 15:53:01 +0800130 ceph_decode_need(p, end, 1 + 1, bad);
131 mdsmap_v = ceph_decode_8(p);
Jia Yang8e298de2020-07-23 10:25:52 +0800132 *p += sizeof(u8); /* mdsmap_cv */
Yan, Zhengd463a432016-03-31 15:53:01 +0800133 if (mdsmap_v >= 4) {
134 u32 mdsmap_len;
135 ceph_decode_32_safe(p, end, mdsmap_len, bad);
136 if (end < *p + mdsmap_len)
137 goto bad;
138 end = *p + mdsmap_len;
Sage Weil4f6a7e52013-02-23 10:41:09 -0800139 }
Sage Weil2f2dc052009-10-06 11:31:09 -0700140
141 ceph_decode_need(p, end, 8*sizeof(u32) + sizeof(u64), bad);
Sage Weilc89136e2009-10-14 09:59:09 -0700142 m->m_epoch = ceph_decode_32(p);
143 m->m_client_epoch = ceph_decode_32(p);
144 m->m_last_failure = ceph_decode_32(p);
145 m->m_root = ceph_decode_32(p);
146 m->m_session_timeout = ceph_decode_32(p);
147 m->m_session_autoclose = ceph_decode_32(p);
148 m->m_max_file_size = ceph_decode_64(p);
149 m->m_max_mds = ceph_decode_32(p);
Xiubo Li4d7ace02019-11-26 07:24:21 -0500150
151 /*
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500152 * pick out the active nodes as the m_num_active_mds, the
153 * m_num_active_mds maybe larger than m_max_mds when decreasing
154 * the max_mds in cluster side, in other case it should less
155 * than or equal to m_max_mds.
Xiubo Li4d7ace02019-11-26 07:24:21 -0500156 */
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500157 m->m_num_active_mds = n = ceph_decode_32(p);
Xiubo Li4d7ace02019-11-26 07:24:21 -0500158
159 /*
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500160 * the possible max rank, it maybe larger than the m_num_active_mds,
Xiubo Li4d7ace02019-11-26 07:24:21 -0500161 * for example if the mds_max == 2 in the cluster, when the MDS(0)
162 * was laggy and being replaced by a new MDS, we will temporarily
163 * receive a new mds map with n_num_mds == 1 and the active MDS(1),
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500164 * and the mds rank >= m_num_active_mds.
Xiubo Li4d7ace02019-11-26 07:24:21 -0500165 */
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500166 m->possible_max_rank = max(m->m_num_active_mds, m->m_max_mds);
Sage Weil2f2dc052009-10-06 11:31:09 -0700167
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500168 m->m_info = kcalloc(m->possible_max_rank, sizeof(*m->m_info), GFP_NOFS);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200169 if (!m->m_info)
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800170 goto nomem;
Sage Weil2f2dc052009-10-06 11:31:09 -0700171
172 /* pick out active nodes from mds_info (state > 0) */
Sage Weil2f2dc052009-10-06 11:31:09 -0700173 for (i = 0; i < n; i++) {
Sage Weil94045e12009-11-19 15:31:50 -0800174 u64 global_id;
Sage Weil2f2dc052009-10-06 11:31:09 -0700175 u32 namelen;
176 s32 mds, inc, state;
Yan, Zhengd463a432016-03-31 15:53:01 +0800177 u8 info_v;
178 void *info_end = NULL;
Sage Weil2f2dc052009-10-06 11:31:09 -0700179 struct ceph_entity_addr addr;
180 u32 num_export_targets;
181 void *pexport_targets = NULL;
Sage Weil0deb01c2010-06-17 14:19:01 -0700182 struct ceph_timespec laggy_since;
Dan Carpenter6af86522013-05-29 06:46:56 -0500183 struct ceph_mds_info *info;
Xiubo Lida08e1e2019-11-26 07:24:20 -0500184 bool laggy;
Sage Weil2f2dc052009-10-06 11:31:09 -0700185
Yan, Zhengd463a432016-03-31 15:53:01 +0800186 ceph_decode_need(p, end, sizeof(u64) + 1, bad);
Sage Weil94045e12009-11-19 15:31:50 -0800187 global_id = ceph_decode_64(p);
Yan, Zhengd463a432016-03-31 15:53:01 +0800188 info_v= ceph_decode_8(p);
189 if (info_v >= 4) {
190 u32 info_len;
Yan, Zhengd463a432016-03-31 15:53:01 +0800191 ceph_decode_need(p, end, 1 + sizeof(u32), bad);
Jia Yang8e298de2020-07-23 10:25:52 +0800192 *p += sizeof(u8); /* info_cv */
Yan, Zhengd463a432016-03-31 15:53:01 +0800193 info_len = ceph_decode_32(p);
194 info_end = *p + info_len;
195 if (info_end > end)
196 goto bad;
197 }
198
199 ceph_decode_need(p, end, sizeof(u64) + sizeof(u32), bad);
Sage Weil94045e12009-11-19 15:31:50 -0800200 *p += sizeof(u64);
Sage Weilc89136e2009-10-14 09:59:09 -0700201 namelen = ceph_decode_32(p); /* skip mds name */
Sage Weil2f2dc052009-10-06 11:31:09 -0700202 *p += namelen;
203
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +0100204 ceph_decode_32_safe(p, end, mds, bad);
205 ceph_decode_32_safe(p, end, inc, bad);
206 ceph_decode_32_safe(p, end, state, bad);
Jia Yang8e298de2020-07-23 10:25:52 +0800207 *p += sizeof(u64); /* state_seq */
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +0100208 if (info_v >= 8)
209 err = ceph_decode_entity_addrvec(p, end, msgr2, &addr);
210 else
211 err = ceph_decode_entity_addr(p, end, &addr);
Jeff Laytonf3848af2019-06-04 11:26:36 -0400212 if (err)
213 goto corrupt;
Ilya Dryomova5cbd5f2020-10-30 13:30:51 +0100214
215 ceph_decode_copy_safe(p, end, &laggy_since, sizeof(laggy_since),
216 bad);
Xiubo Lida08e1e2019-11-26 07:24:20 -0500217 laggy = laggy_since.tv_sec != 0 || laggy_since.tv_nsec != 0;
Sage Weil2f2dc052009-10-06 11:31:09 -0700218 *p += sizeof(u32);
219 ceph_decode_32_safe(p, end, namelen, bad);
Sage Weile251e282009-10-07 16:38:19 -0700220 *p += namelen;
Yan, Zhengd463a432016-03-31 15:53:01 +0800221 if (info_v >= 2) {
Sage Weil2f2dc052009-10-06 11:31:09 -0700222 ceph_decode_32_safe(p, end, num_export_targets, bad);
223 pexport_targets = *p;
Sage Weile251e282009-10-07 16:38:19 -0700224 *p += num_export_targets * sizeof(u32);
Sage Weil2f2dc052009-10-06 11:31:09 -0700225 } else {
226 num_export_targets = 0;
227 }
228
Yan, Zhengd463a432016-03-31 15:53:01 +0800229 if (info_end && *p != info_end) {
230 if (*p > info_end)
231 goto bad;
232 *p = info_end;
233 }
234
Xiubo Lida08e1e2019-11-26 07:24:20 -0500235 dout("mdsmap_decode %d/%d %lld mds%d.%d %s %s%s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700236 i+1, n, global_id, mds, inc,
Jeff Laytonb726ec92019-05-06 09:38:47 -0400237 ceph_pr_addr(&addr),
Xiubo Lida08e1e2019-11-26 07:24:20 -0500238 ceph_mds_state_name(state),
239 laggy ? "(laggy)" : "");
Dan Carpenter6af86522013-05-29 06:46:56 -0500240
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500241 if (mds < 0 || mds >= m->possible_max_rank) {
Xiubo Li4d7ace02019-11-26 07:24:21 -0500242 pr_warn("mdsmap_decode got incorrect mds(%d)\n", mds);
Dan Carpenter6af86522013-05-29 06:46:56 -0500243 continue;
Xiubo Li4d7ace02019-11-26 07:24:21 -0500244 }
Dan Carpenter6af86522013-05-29 06:46:56 -0500245
Xiubo Li4d7ace02019-11-26 07:24:21 -0500246 if (state <= 0) {
Luis Henriquesccd1acd2020-11-12 11:25:32 +0000247 dout("mdsmap_decode got incorrect state(%s)\n",
248 ceph_mds_state_name(state));
Xiubo Li4d7ace02019-11-26 07:24:21 -0500249 continue;
Yan, Zheng76201b62017-03-28 17:04:13 +0800250 }
251
Dan Carpenter6af86522013-05-29 06:46:56 -0500252 info = &m->m_info[mds];
253 info->global_id = global_id;
254 info->state = state;
255 info->addr = addr;
Xiubo Lida08e1e2019-11-26 07:24:20 -0500256 info->laggy = laggy;
Dan Carpenter6af86522013-05-29 06:46:56 -0500257 info->num_export_targets = num_export_targets;
258 if (num_export_targets) {
259 info->export_targets = kcalloc(num_export_targets,
260 sizeof(u32), GFP_NOFS);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200261 if (!info->export_targets)
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800262 goto nomem;
Dan Carpenter6af86522013-05-29 06:46:56 -0500263 for (j = 0; j < num_export_targets; j++)
264 info->export_targets[j] =
265 ceph_decode_32(&pexport_targets);
266 } else {
267 info->export_targets = NULL;
Sage Weil2f2dc052009-10-06 11:31:09 -0700268 }
269 }
270
271 /* pg_pools */
272 ceph_decode_32_safe(p, end, n, bad);
273 m->m_num_data_pg_pools = n;
Sage Weil4f6a7e52013-02-23 10:41:09 -0800274 m->m_data_pg_pools = kcalloc(n, sizeof(u64), GFP_NOFS);
Sage Weil2f2dc052009-10-06 11:31:09 -0700275 if (!m->m_data_pg_pools)
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800276 goto nomem;
Sage Weil4f6a7e52013-02-23 10:41:09 -0800277 ceph_decode_need(p, end, sizeof(u64)*(n+1), bad);
Sage Weil2f2dc052009-10-06 11:31:09 -0700278 for (i = 0; i < n; i++)
Sage Weil4f6a7e52013-02-23 10:41:09 -0800279 m->m_data_pg_pools[i] = ceph_decode_64(p);
280 m->m_cas_pg_pool = ceph_decode_64(p);
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800281 m->m_enabled = m->m_epoch > 1;
Sage Weil2f2dc052009-10-06 11:31:09 -0700282
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800283 mdsmap_ev = 1;
284 if (mdsmap_v >= 2) {
285 ceph_decode_16_safe(p, end, mdsmap_ev, bad_ext);
286 }
287 if (mdsmap_ev >= 3) {
288 if (__decode_and_drop_compat_set(p, end) < 0)
289 goto bad_ext;
290 }
291 /* metadata_pool */
292 if (mdsmap_ev < 5) {
293 __decode_and_drop_type(p, end, u32, bad_ext);
294 } else {
295 __decode_and_drop_type(p, end, u64, bad_ext);
296 }
297
298 /* created + modified + tableserver */
299 __decode_and_drop_type(p, end, struct ceph_timespec, bad_ext);
300 __decode_and_drop_type(p, end, struct ceph_timespec, bad_ext);
301 __decode_and_drop_type(p, end, u32, bad_ext);
302
303 /* in */
304 {
305 int num_laggy = 0;
306 ceph_decode_32_safe(p, end, n, bad_ext);
307 ceph_decode_need(p, end, sizeof(u32) * n, bad_ext);
308
309 for (i = 0; i < n; i++) {
310 s32 mds = ceph_decode_32(p);
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500311 if (mds >= 0 && mds < m->possible_max_rank) {
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800312 if (m->m_info[mds].laggy)
313 num_laggy++;
314 }
315 }
316 m->m_num_laggy = num_laggy;
Yan, Zheng76201b62017-03-28 17:04:13 +0800317
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500318 if (n > m->possible_max_rank) {
Yan, Zheng76201b62017-03-28 17:04:13 +0800319 void *new_m_info = krealloc(m->m_info,
320 n * sizeof(*m->m_info),
321 GFP_NOFS | __GFP_ZERO);
322 if (!new_m_info)
323 goto nomem;
324 m->m_info = new_m_info;
325 }
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500326 m->possible_max_rank = n;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800327 }
328
329 /* inc */
330 __decode_and_drop_map(p, end, u32, u32, bad_ext);
331 /* up */
332 __decode_and_drop_map(p, end, u32, u64, bad_ext);
333 /* failed */
334 __decode_and_drop_set(p, end, u32, bad_ext);
335 /* stopped */
336 __decode_and_drop_set(p, end, u32, bad_ext);
337
338 if (mdsmap_ev >= 4) {
339 /* last_failure_osd_epoch */
340 __decode_and_drop_type(p, end, u32, bad_ext);
341 }
342 if (mdsmap_ev >= 6) {
343 /* ever_allowed_snaps */
344 __decode_and_drop_type(p, end, u8, bad_ext);
345 /* explicitly_allowed_snaps */
346 __decode_and_drop_type(p, end, u8, bad_ext);
347 }
348 if (mdsmap_ev >= 7) {
349 /* inline_data_enabled */
350 __decode_and_drop_type(p, end, u8, bad_ext);
351 }
352 if (mdsmap_ev >= 8) {
353 u32 name_len;
354 /* enabled */
355 ceph_decode_8_safe(p, end, m->m_enabled, bad_ext);
356 ceph_decode_32_safe(p, end, name_len, bad_ext);
357 ceph_decode_need(p, end, name_len, bad_ext);
358 *p += name_len;
359 }
360 /* damaged */
361 if (mdsmap_ev >= 9) {
362 size_t need;
363 ceph_decode_32_safe(p, end, n, bad_ext);
364 need = sizeof(u32) * n;
365 ceph_decode_need(p, end, need, bad_ext);
366 *p += need;
367 m->m_damaged = n > 0;
368 } else {
369 m->m_damaged = false;
370 }
371bad_ext:
Xiubo Lida08e1e2019-11-26 07:24:20 -0500372 dout("mdsmap_decode m_enabled: %d, m_damaged: %d, m_num_laggy: %d\n",
373 !!m->m_enabled, !!m->m_damaged, m->m_num_laggy);
Yan, Zhengd463a432016-03-31 15:53:01 +0800374 *p = end;
Sage Weil2f2dc052009-10-06 11:31:09 -0700375 dout("mdsmap_decode success epoch %u\n", m->m_epoch);
376 return m;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800377nomem:
Sage Weil2f2dc052009-10-06 11:31:09 -0700378 err = -ENOMEM;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800379 goto out_err;
Jeff Laytonf3848af2019-06-04 11:26:36 -0400380corrupt:
Sage Weil2f2dc052009-10-06 11:31:09 -0700381 pr_err("corrupt mdsmap\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -0800382 print_hex_dump(KERN_DEBUG, "mdsmap: ",
383 DUMP_PREFIX_OFFSET, 16, 1,
384 start, end - start, true);
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800385out_err:
Sage Weil2f2dc052009-10-06 11:31:09 -0700386 ceph_mdsmap_destroy(m);
Emil Goodec213b502013-05-28 16:59:00 +0200387 return ERR_PTR(err);
Jeff Laytonf3848af2019-06-04 11:26:36 -0400388bad:
389 err = -EINVAL;
390 goto corrupt;
Sage Weil2f2dc052009-10-06 11:31:09 -0700391}
392
393void ceph_mdsmap_destroy(struct ceph_mdsmap *m)
394{
395 int i;
396
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500397 for (i = 0; i < m->possible_max_rank; i++)
Sage Weil2f2dc052009-10-06 11:31:09 -0700398 kfree(m->m_info[i].export_targets);
399 kfree(m->m_info);
400 kfree(m->m_data_pg_pools);
401 kfree(m);
402}
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800403
404bool ceph_mdsmap_is_cluster_available(struct ceph_mdsmap *m)
405{
406 int i, nr_active = 0;
407 if (!m->m_enabled)
408 return false;
409 if (m->m_damaged)
410 return false;
Xiubo Li4d7ace02019-11-26 07:24:21 -0500411 if (m->m_num_laggy == m->m_num_active_mds)
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800412 return false;
Xiubo Lib38c9eb2019-12-04 06:57:39 -0500413 for (i = 0; i < m->possible_max_rank; i++) {
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800414 if (m->m_info[i].state == CEPH_MDS_STATE_ACTIVE)
415 nr_active++;
416 }
417 return nr_active > 0;
418}