Whamcloud - gitweb
LU-445 lnet: Send timestamps with LNet counters
[fs/lustre-release.git] / lnet / utils / lst.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lnet/selftest/conctl.c
37  *
38  * Author: Liang Zhen <liangzhen@clusterfs.com>
39  */
40
41 #define _GNU_SOURCE
42
43 #include <libcfs/libcfsutil.h>
44 #include <lnet/lnetctl.h>
45 #include <lnet/lnetst.h>
46
47
48 lst_sid_t LST_INVALID_SID = {LNET_NID_ANY, -1};
49 static lst_sid_t           session_id;
50 static int                 session_key;
51 static lstcon_trans_stat_t trans_stat;
52
53 typedef struct list_string {
54         struct list_string *lstr_next;
55         int                 lstr_sz;
56         char                lstr_str[0];
57 } lstr_t;
58
59 #ifndef offsetof
60 # define offsetof(typ,memb)     ((unsigned long)((char *)&(((typ *)0)->memb)))
61 #endif
62
63 static int alloc_count = 0;
64 static int alloc_nob   = 0;
65
66 lstr_t *
67 alloc_lstr(int sz)
68 {
69         lstr_t  *lstr = malloc(offsetof(lstr_t, lstr_str[sz]));
70
71         if (lstr == NULL) {
72                 fprintf(stderr, "Can't allocate lstr\n");
73                 abort();
74         }
75
76         alloc_nob += sz;
77         alloc_count++;
78
79         lstr->lstr_str[0] = 0;
80         lstr->lstr_sz = sz;
81         return lstr;
82 }
83
84 void
85 free_lstr(lstr_t *lstr)
86 {
87         alloc_count--;
88         alloc_nob -= lstr->lstr_sz;
89         free(lstr);
90 }
91
92 void
93 free_lstrs(lstr_t **list)
94 {
95         lstr_t   *lstr;
96
97         while ((lstr = *list) != NULL) {
98                 *list = lstr->lstr_next;
99                 free_lstr(lstr);
100         }
101 }
102
103 void
104 new_lstrs(lstr_t **list, char *prefix, char *postfix,
105           int lo, int hi, int stride)
106 {
107         int    n1 = strlen(prefix);
108         int    n2 = strlen(postfix);
109         int    sz = n1 + 20 + n2 + 1;
110
111         do {
112                 lstr_t *n = alloc_lstr(sz);
113
114                 snprintf(n->lstr_str, sz - 1, "%s%u%s",
115                          prefix, lo, postfix);
116
117                 n->lstr_next = *list;
118                 *list = n;
119
120                 lo += stride;
121         } while (lo <= hi);
122 }
123
124 int
125 expand_lstr(lstr_t **list, lstr_t *l)
126 {
127         int          nob = strlen(l->lstr_str);
128         char        *b1;
129         char        *b2;
130         char        *expr;
131         char        *sep;
132         int          x;
133         int          y;
134         int          z;
135         int          n;
136
137         b1 = strchr(l->lstr_str, '[');
138         if (b1 == NULL) {
139                 l->lstr_next = *list;
140                 *list = l;
141                 return 0;
142         }
143
144         b2 = strchr(b1, ']');
145         if (b2 == NULL || b2 == b1 + 1)
146                 return -1;
147
148         *b1++ = 0;
149         *b2++ = 0;
150         expr = b1;
151         do {
152
153                 sep = strchr(expr, ',');
154                 if (sep != NULL)
155                         *sep++ = 0;
156
157                 nob = strlen(expr);
158                 n = nob;
159                 if (sscanf(expr, "%u%n", &x, &n) >= 1 && n == nob) {
160                         /* simple number */
161                         new_lstrs(list, l->lstr_str, b2, x, x, 1);
162                         continue;
163                 }
164
165                 n = nob;
166                 if (sscanf(expr, "%u-%u%n", &x, &y, &n) >= 2 && n == nob &&
167                     x < y) {
168                         /* simple range */
169                         new_lstrs(list, l->lstr_str, b2, x, y, 1);
170                         continue;
171                 }
172
173                 n = nob;
174                 if (sscanf(expr, "%u-%u/%u%n", &x, &y, &z, &n) >= 3 && n == nob &&
175                     x < y) {
176                         /* strided range */
177                         new_lstrs(list, l->lstr_str, b2, x, y, z);
178                         continue;
179                 }
180
181                 /* syntax error */
182                 return -1;
183         } while ((expr = sep) != NULL);
184
185         free_lstr(l);
186
187         return 1;
188 }
189
190 int
191 expand_strs(char *str, lstr_t **head)
192 {
193         lstr_t  *list = NULL;
194         lstr_t  *nlist;
195         lstr_t  *l;
196         int      rc = 0;
197         int      expanded;
198
199         l = alloc_lstr(strlen(str) + 1);
200         memcpy(l->lstr_str, str, strlen(str) + 1);
201         l->lstr_next = NULL;
202         list = l;
203
204         do {
205                 expanded = 0;
206                 nlist = NULL;
207
208                 while ((l = list) != NULL) {
209                         list = l->lstr_next;
210
211                         rc = expand_lstr(&nlist, l);
212                         if (rc < 0) {
213                                 fprintf(stderr, "Syntax error in \"%s\"\n", str);
214                                 free_lstr(l);
215                                 break;
216                         }
217
218                         expanded |= rc > 0;
219                 }
220
221                 /* re-order onto 'list' */
222                 while ((l = nlist) != NULL) {
223                         nlist = l->lstr_next;
224                         l->lstr_next = list;
225                         list = l;
226                 }
227
228         } while (expanded && rc > 0);
229
230         if (rc >= 0) {
231                 *head = list;
232                 return 0;
233         }
234
235         while ((l = list) != NULL) {
236                 list = l->lstr_next;
237
238                 free_lstr(l);
239         }
240         return rc;
241 }
242
243 int
244 lst_parse_nids(char *str, int *countp, lnet_process_id_t **idspp)
245 {
246         lstr_t  *head = NULL;
247         lstr_t  *l;
248         int      c = 0;
249         int      i;
250         int      rc;
251
252         rc = expand_strs(str, &head);
253         if (rc != 0)
254                 goto out;
255
256         l = head;
257         while (l != NULL) {
258                 l = l->lstr_next;
259                 c++;
260         }
261
262         *idspp = malloc(c * sizeof(lnet_process_id_t));
263         if (*idspp == NULL) {
264                 fprintf(stderr, "Out of memory\n");
265                 rc = -1;
266         }
267
268         *countp = c;
269 out:
270         i = 0;
271         while ((l = head) != NULL) {
272                 head = l->lstr_next;
273
274                 if (rc == 0) {
275                         (*idspp)[i].nid = libcfs_str2nid(l->lstr_str);
276                         if ((*idspp)[i].nid == LNET_NID_ANY) {
277                                 fprintf(stderr, "Invalid nid: %s\n",
278                                         l->lstr_str);
279                                 rc = -1;
280                         }
281
282                         (*idspp)[i].pid = LUSTRE_LNET_PID;
283                         i++;
284                 }
285
286                 free_lstr(l);
287         }
288
289         if (rc == 0)
290                 return 0;
291
292         free(*idspp);
293         *idspp = NULL;
294
295         return rc;
296 }
297
298 char *
299 lst_node_state2str(int state)
300 {
301         if (state == LST_NODE_ACTIVE)
302                 return "Active";
303         if (state == LST_NODE_BUSY)
304                 return "Busy";
305         if (state == LST_NODE_DOWN)
306                 return "Down";
307
308         return "Unknown";
309 }
310
311 int
312 lst_node_str2state(char *str)
313 {
314         if (strcasecmp(str, "active") == 0)
315                 return LST_NODE_ACTIVE;
316         if (strcasecmp(str, "busy") == 0)
317                 return LST_NODE_BUSY;
318         if (strcasecmp(str, "down") == 0)
319                 return LST_NODE_DOWN;
320         if (strcasecmp(str, "unknown") == 0)
321                 return LST_NODE_UNKNOWN;
322         if (strcasecmp(str, "invalid") == 0)
323                 return (LST_NODE_UNKNOWN | LST_NODE_DOWN | LST_NODE_BUSY);
324
325         return -1;
326 }
327
328 char *
329 lst_test_type2name(int type)
330 {
331         if (type == LST_TEST_PING)
332                 return "ping";
333         if (type == LST_TEST_BULK)
334                 return "brw";
335
336         return "unknown";
337 }
338
339 int
340 lst_test_name2type(char *name)
341 {
342         if (strcasecmp(name, "ping") == 0)
343                 return LST_TEST_PING;
344         if (strcasecmp(name, "brw") == 0)
345                 return LST_TEST_BULK;
346
347         return -1;
348 }
349
350 void
351 lst_print_usage(char *cmd)
352 {
353         Parser_printhelp(cmd);
354 }
355
356 void
357 lst_print_error(char *sub, const char *def_format, ...)
358 {
359         va_list ap;
360
361         /* local error returned from kernel */
362         switch (errno) {
363         case ESRCH:
364                 fprintf(stderr, "No session exists\n");
365                 return;
366         case ESHUTDOWN:
367                 fprintf(stderr, "Session is shutting down\n");
368                 return;
369         case EACCES:
370                 fprintf(stderr, "Unmatched session key or not root\n");
371                 return;
372         case ENOENT:
373                 fprintf(stderr, "Can't find %s in current session\n", sub);
374                 return;
375         case EINVAL:
376                 fprintf(stderr, "Invalid parameters list in command line\n");
377                 return;
378         case EFAULT:
379                 fprintf(stderr, "Bad parameter address\n");
380                 return;
381         case EEXIST:
382                 fprintf(stderr, "%s already exists\n", sub);
383                 return;
384         default:
385                 va_start(ap, def_format);
386                 vfprintf(stderr, def_format, ap);
387                 va_end(ap);
388
389                 return;
390         }
391 }
392
393 void
394 lst_free_rpcent(cfs_list_t *head)
395 {
396         lstcon_rpc_ent_t *ent;
397
398         while (!cfs_list_empty(head)) {
399                 ent = cfs_list_entry(head->next, lstcon_rpc_ent_t, rpe_link);
400
401                 cfs_list_del(&ent->rpe_link);
402                 free(ent);
403         }
404 }
405
406 void
407 lst_reset_rpcent(cfs_list_t *head)
408 {
409         lstcon_rpc_ent_t *ent;
410
411         cfs_list_for_each_entry_typed(ent, head, lstcon_rpc_ent_t, rpe_link) {
412                 ent->rpe_sid      = LST_INVALID_SID;
413                 ent->rpe_peer.nid = LNET_NID_ANY;
414                 ent->rpe_peer.pid = LNET_PID_ANY;
415                 ent->rpe_rpc_errno = ent->rpe_fwk_errno = 0;
416         }
417 }
418
419 int
420 lst_alloc_rpcent(cfs_list_t *head, int count, int offset)
421 {
422         lstcon_rpc_ent_t *ent;
423         int               i;
424
425         for (i = 0; i < count; i++) {
426                 ent = malloc(offsetof(lstcon_rpc_ent_t, rpe_payload[offset]));
427                 if (ent == NULL) {
428                         lst_free_rpcent(head);
429                         return -1;
430                 }
431
432                 memset(ent, 0, offsetof(lstcon_rpc_ent_t, rpe_payload[offset]));
433
434                 ent->rpe_sid      = LST_INVALID_SID;
435                 ent->rpe_peer.nid = LNET_NID_ANY;
436                 ent->rpe_peer.pid = LNET_PID_ANY;
437                 cfs_list_add(&ent->rpe_link, head);
438         }
439
440         return 0;
441 }
442
443 void
444 lst_print_transerr(cfs_list_t *head, char *optstr)
445 {
446         lstcon_rpc_ent_t  *ent;
447
448         cfs_list_for_each_entry_typed(ent, head, lstcon_rpc_ent_t, rpe_link) {
449                 if (ent->rpe_rpc_errno == 0 && ent->rpe_fwk_errno == 0)
450                         continue;
451
452                 if (ent->rpe_rpc_errno != 0) {
453                         fprintf(stderr, "%s RPC failed on %s: %s\n",
454                                 optstr, libcfs_id2str(ent->rpe_peer),
455                                 strerror(ent->rpe_rpc_errno));
456                         continue;
457                 }
458
459                 fprintf(stderr, "%s failed on %s: %s\n",
460                         optstr, libcfs_id2str(ent->rpe_peer),
461                         strerror(ent->rpe_fwk_errno));
462         }
463 }
464
465 int lst_info_batch_ioctl(char *batch, int test, int server,
466                         lstcon_test_batch_ent_t *entp, int *idxp,
467                         int *ndentp, lstcon_node_ent_t *dentsp);
468
469 int lst_info_group_ioctl(char *name, lstcon_ndlist_ent_t *gent,
470                          int *idx, int *count, lstcon_node_ent_t *dents);
471
472 int lst_query_batch_ioctl(char *batch, int test, int server,
473                           int timeout, cfs_list_t *head);
474
475 int
476 lst_ioctl(unsigned int opc, void *buf, int len)
477 {
478         struct libcfs_ioctl_data data;
479         int    rc;
480
481         LIBCFS_IOC_INIT (data);
482         data.ioc_u32[0]  = opc;
483         data.ioc_plen1   = len;
484         data.ioc_pbuf1   = (char *)buf;
485         data.ioc_plen2   = sizeof(trans_stat);
486         data.ioc_pbuf2   = (char *)&trans_stat;
487
488         memset(&trans_stat, 0, sizeof(trans_stat));
489
490         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_LNETST, &data);
491
492         /* local error, no valid RPC result */
493         if (rc != 0)
494                 return -1;
495
496         /* RPC error */
497         if (trans_stat.trs_rpc_errno != 0)
498                 return -2;
499
500         /* Framework error */
501         if (trans_stat.trs_fwk_errno != 0)
502                 return -3;
503
504         return 0;
505 }
506
507 int
508 lst_new_session_ioctl (char *name, int timeout, int force, lst_sid_t *sid)
509 {
510         lstio_session_new_args_t args = {0};
511
512         args.lstio_ses_key     = session_key;
513         args.lstio_ses_timeout = timeout;
514         args.lstio_ses_force   = force;
515         args.lstio_ses_idp     = sid;
516         args.lstio_ses_nmlen   = strlen(name);
517         args.lstio_ses_namep   = name;
518
519         return lst_ioctl (LSTIO_SESSION_NEW, &args, sizeof(args));
520 }
521
522 int
523 jt_lst_new_session(int argc,  char **argv)
524 {
525         char  buf[LST_NAME_SIZE];
526         char *name;
527         int   optidx  = 0;
528         int   timeout = 300;
529         int   force   = 0;
530         int   c;
531         int   rc;
532
533         static struct option session_opts[] =
534         {
535                 {"timeout", required_argument,  0, 't' },
536                 {"force",   no_argument,        0, 'f' },
537                 {0,         0,                  0,  0  }
538         };
539
540         if (session_key == 0) {
541                 fprintf(stderr,
542                         "Can't find env LST_SESSION or value is not valid\n");
543                 return -1;
544         }
545
546         while (1) {
547
548                 c = getopt_long(argc, argv, "ft:",
549                                 session_opts, &optidx);
550
551                 if (c == -1)
552                         break;
553
554                 switch (c) {
555                 case 'f':
556                         force = 1;
557                         break;
558                 case 't':
559                         timeout = atoi(optarg);
560                         break;
561                 default:
562                         lst_print_usage(argv[0]);
563                         return -1;
564                 }
565         }
566
567         if (timeout <= 0) {
568                 fprintf(stderr, "Invalid timeout value\n");
569                 return -1;
570         }
571
572         if (optind == argc - 1) {
573                 name = argv[optind ++];
574                 if (strlen(name) >= LST_NAME_SIZE) {
575                         fprintf(stderr, "Name size is limited to %d\n",
576                                 LST_NAME_SIZE - 1);
577                         return -1;
578                 }
579
580         } else if (optind == argc) {
581                 char           user[LST_NAME_SIZE];
582                 char           host[LST_NAME_SIZE];
583                 struct passwd *pw = getpwuid(getuid());
584
585                 if (pw == NULL)
586                         snprintf(user, sizeof(user), "%d", (int)getuid());
587                 else
588                         snprintf(user, sizeof(user), "%s", pw->pw_name);
589
590                 rc = gethostname(host, sizeof(host));
591                 if (rc != 0)
592                         snprintf(host, sizeof(host), "unknown_host");
593
594                 snprintf(buf, LST_NAME_SIZE, "%s@%s", user, host);
595                 name = buf;
596
597         } else {
598                 lst_print_usage(argv[0]);
599                 return -1;
600         }
601
602         rc = lst_new_session_ioctl(name, timeout, force, &session_id);
603
604         if (rc != 0) {
605                 lst_print_error("session", "Failed to create session: %s\n",
606                                 strerror(errno));
607                 return rc;
608         }
609
610         fprintf(stdout, "SESSION: %s TIMEOUT: %d FORCE: %s\n",
611                 name, timeout, force ? "Yes": "No");
612
613         return rc;
614 }
615
616 int
617 lst_session_info_ioctl(char *name, int len, int *key,
618                        lst_sid_t *sid, lstcon_ndlist_ent_t *ndinfo)
619 {
620         lstio_session_info_args_t args = {0};
621
622         args.lstio_ses_idp    = sid;
623         args.lstio_ses_keyp   = key;
624         args.lstio_ses_ndinfo = ndinfo;
625         args.lstio_ses_nmlen  = len;
626         args.lstio_ses_namep  = name;
627
628         return lst_ioctl(LSTIO_SESSION_INFO, &args, sizeof(args));
629 }
630
631 int
632 jt_lst_show_session(int argc, char **argv)
633 {
634         lstcon_ndlist_ent_t ndinfo;
635         lst_sid_t           sid;
636         char                name[LST_NAME_SIZE];
637         int                 key;
638         int                 rc;
639
640         rc = lst_session_info_ioctl(name, LST_NAME_SIZE, &key, &sid, &ndinfo);
641
642         if (rc != 0) {
643                 lst_print_error("session", "Failed to show session: %s\n",
644                                 strerror(errno));
645                 return -1;
646         }
647
648         fprintf(stdout, "%s ID: "LPU64"@%s, KEY: %d NODES: %d\n",
649                 name, sid.ses_stamp, libcfs_nid2str(sid.ses_nid),
650                 key, ndinfo.nle_nnode);
651
652         return 0;
653 }
654
655 int
656 lst_end_session_ioctl(void)
657 {
658         lstio_session_end_args_t args = {0};
659
660         args.lstio_ses_key =  session_key;
661         return lst_ioctl (LSTIO_SESSION_END, &args, sizeof(args));
662 }
663
664 int
665 jt_lst_end_session(int argc, char **argv)
666 {
667         int             rc;
668
669         if (session_key == 0) {
670                 fprintf(stderr,
671                         "Can't find env LST_SESSION or value is not valid\n");
672                 return -1;
673         }
674
675         rc = lst_end_session_ioctl();
676
677         if (rc == 0) {
678                 fprintf(stdout, "session is ended\n");
679                 return 0;
680         }
681
682         if (rc == -1) {
683                 lst_print_error("session", "Failed to end session: %s\n",
684                                 strerror(errno));
685                 return rc;
686         }
687
688         if (trans_stat.trs_rpc_errno != 0) {
689                 fprintf(stderr,
690                         "[RPC] Failed to send %d session RPCs: %s\n",
691                         lstcon_rpc_stat_failure(&trans_stat, 0),
692                         strerror(trans_stat.trs_rpc_errno));
693         }
694
695         if (trans_stat.trs_fwk_errno != 0) {
696                 fprintf(stderr,
697                         "[FWK] Failed to end session on %d nodes: %s\n",
698                         lstcon_sesop_stat_failure(&trans_stat, 0),
699                         strerror(trans_stat.trs_fwk_errno));
700         }
701
702         return rc;
703 }
704
705 int
706 lst_ping_ioctl(char *str, int type, int timeout,
707                int count, lnet_process_id_t *ids, cfs_list_t *head)
708 {
709         lstio_debug_args_t args = {0};
710
711         args.lstio_dbg_key     = session_key;
712         args.lstio_dbg_type    = type;
713         args.lstio_dbg_flags   = 0;
714         args.lstio_dbg_timeout = timeout;
715         args.lstio_dbg_nmlen   = (str == NULL) ? 0: strlen(str);
716         args.lstio_dbg_namep   = str;
717         args.lstio_dbg_count   = count;
718         args.lstio_dbg_idsp    = ids;
719         args.lstio_dbg_resultp = head;
720
721         return lst_ioctl (LSTIO_DEBUG, &args, sizeof(args));
722 }
723
724 int
725 lst_get_node_count(int type, char *str, int *countp, lnet_process_id_t **idspp)
726 {
727         char                    buf[LST_NAME_SIZE];
728         lstcon_test_batch_ent_t ent;
729         lstcon_ndlist_ent_t    *entp = &ent.tbe_cli_nle;
730         lst_sid_t               sid;
731         int                     key;
732         int                     rc;
733
734         switch (type) {
735         case LST_OPC_SESSION:
736                 rc = lst_session_info_ioctl(buf, LST_NAME_SIZE,
737                                             &key, &sid, entp);
738                 break;
739
740         case LST_OPC_BATCHSRV:
741                 entp = &ent.tbe_srv_nle;
742         case LST_OPC_BATCHCLI:
743                 rc = lst_info_batch_ioctl(str, 0, 0, &ent, NULL, NULL, NULL);
744                 break;
745
746         case LST_OPC_GROUP:
747                 rc = lst_info_group_ioctl(str, entp, NULL, NULL, NULL);
748                 break;
749
750         case LST_OPC_NODES:
751                 rc = lst_parse_nids(str, &entp->nle_nnode, idspp) < 0 ? -1 : 0;
752                 break;
753
754         default:
755                 rc = -1;
756                 break;
757         }
758
759         if (rc == 0)
760                 *countp = entp->nle_nnode;
761
762         return rc;
763 }
764
765 int
766 jt_lst_ping(int argc,  char **argv)
767 {
768         cfs_list_t         head;
769         lnet_process_id_t *ids = NULL;
770         lstcon_rpc_ent_t  *ent = NULL;
771         char              *str = NULL;
772         int                optidx  = 0;
773         int                server  = 0;
774         int                timeout = 5;
775         int                count   = 0;
776         int                type    = 0;
777         int                rc      = 0;
778         int                c;
779
780         static struct option ping_opts[] =
781         {
782                 {"session", no_argument,       0, 's' },
783                 {"server",  no_argument,       0, 'v' },
784                 {"batch",   required_argument, 0, 'b' },
785                 {"group",   required_argument, 0, 'g' },
786                 {"nodes",   required_argument, 0, 'n' },
787                 {"timeout", required_argument, 0, 't' },
788                 {0,         0,                 0,  0  }
789         };
790
791         if (session_key == 0) {
792                 fprintf(stderr,
793                         "Can't find env LST_SESSION or value is not valid\n");
794                 return -1;
795         }
796
797         while (1) {
798
799                 c = getopt_long(argc, argv, "g:b:n:t:sv",
800                                 ping_opts, &optidx);
801
802                 if (c == -1)
803                         break;
804
805                 switch (c) {
806                 case 's':
807                         type = LST_OPC_SESSION;
808                         break;
809
810                 case 'g':
811                         type = LST_OPC_GROUP;
812                         str = optarg;
813                         break;
814
815                 case 'b':
816                         type = LST_OPC_BATCHCLI;
817                         str = optarg;
818                         break;
819
820                 case 'n':
821                         type = LST_OPC_NODES;
822                         str = optarg;
823                         break;
824
825                 case 't':
826                         timeout = atoi(optarg);
827                         break;
828
829                 case 'v':
830                         server = 1;
831                         break;
832
833                 default:
834                         lst_print_usage(argv[0]);
835                         return -1;
836                 }
837         }
838
839         if (type == 0 || timeout <= 0 || optind != argc) {
840                 lst_print_usage(argv[0]);
841                 return -1;
842         }
843
844         if (type == LST_OPC_BATCHCLI && server)
845                 type = LST_OPC_BATCHSRV;
846
847         rc = lst_get_node_count(type, str, &count, &ids);
848         if (rc < 0) {
849                 fprintf(stderr, "Failed to get count of nodes from %s: %s\n",
850                         (str == NULL) ? "session" : str, strerror(errno));
851                 return -1;
852         }
853
854         CFS_INIT_LIST_HEAD(&head);
855
856         rc = lst_alloc_rpcent(&head, count, LST_NAME_SIZE);
857         if (rc != 0) {
858                 fprintf(stderr, "Out of memory\n");
859                 goto out;
860         }
861
862         if (count == 0) {
863                 fprintf(stdout, "Target %s is empty\n",
864                         (str == NULL) ? "session" : str);
865                 goto out;
866         }
867
868         rc = lst_ping_ioctl(str, type, timeout, count, ids, &head);
869         if (rc == -1) { /* local failure */
870                 lst_print_error("debug", "Failed to ping %s: %s\n",
871                                 (str == NULL) ? "session" : str,
872                                 strerror(errno));
873                 rc = -1;
874                 goto out;
875         }
876
877         /* ignore RPC errors and framwork errors */
878         cfs_list_for_each_entry_typed(ent, &head, lstcon_rpc_ent_t, rpe_link) {
879                 fprintf(stdout, "\t%s: %s [session: %s id: %s]\n",
880                         libcfs_id2str(ent->rpe_peer),
881                         lst_node_state2str(ent->rpe_state),
882                         (ent->rpe_state == LST_NODE_ACTIVE ||
883                          ent->rpe_state == LST_NODE_BUSY)?
884                                  (ent->rpe_rpc_errno == 0 ?
885                                          &ent->rpe_payload[0] : "Unknown") :
886                                  "<NULL>", libcfs_nid2str(ent->rpe_sid.ses_nid));
887         }
888
889 out:
890         lst_free_rpcent(&head);
891
892         if (ids != NULL)
893                 free(ids);
894
895         return rc;
896
897 }
898
899 int
900 lst_add_nodes_ioctl (char *name, int count, lnet_process_id_t *ids,
901                      cfs_list_t *resultp)
902 {
903         lstio_group_nodes_args_t args = {0};
904
905         args.lstio_grp_key     = session_key;
906         args.lstio_grp_nmlen   = strlen(name);
907         args.lstio_grp_namep   = name;
908         args.lstio_grp_count   = count;
909         args.lstio_grp_idsp    = ids;
910         args.lstio_grp_resultp = resultp;
911
912         return lst_ioctl(LSTIO_NODES_ADD, &args, sizeof(args));
913 }
914
915 int
916 lst_add_group_ioctl (char *name)
917 {
918         lstio_group_add_args_t args = {0};
919
920         args.lstio_grp_key     =  session_key;
921         args.lstio_grp_nmlen   =  strlen(name);
922         args.lstio_grp_namep   =  name;
923
924         return lst_ioctl(LSTIO_GROUP_ADD, &args, sizeof(args));
925 }
926
927 int
928 jt_lst_add_group(int argc, char **argv)
929 {
930         cfs_list_t         head;
931         lnet_process_id_t *ids;
932         char              *name;
933         int                count;
934         int                rc;
935         int                i;
936
937         if (session_key == 0) {
938                 fprintf(stderr,
939                         "Can't find env LST_SESSION or value is not valid\n");
940                 return -1;
941         }
942
943         if (argc < 3) {
944                 lst_print_usage(argv[0]);
945                 return -1;
946         }
947
948         name = argv[1];
949         if (strlen(name) >= LST_NAME_SIZE) {
950                 fprintf(stderr, "Name length is limited to %d\n",
951                         LST_NAME_SIZE - 1);
952                 return -1;
953         }
954
955         rc = lst_add_group_ioctl(name);
956         if (rc != 0) {
957                 lst_print_error("group", "Failed to add group %s: %s\n",
958                                 name, strerror(errno));
959                 return -1;
960         }
961
962         CFS_INIT_LIST_HEAD(&head);
963
964         for (i = 2; i < argc; i++) {
965                 /* parse address list */
966                 rc = lst_parse_nids(argv[i], &count, &ids);
967                 if (rc < 0) {
968                         fprintf(stderr, "Ignore invalid id list %s\n",
969                                 argv[i]);
970                         continue;
971                 }
972
973                 if (count == 0)
974                         continue;
975
976                 rc = lst_alloc_rpcent(&head, count, 0);
977                 if (rc != 0) {
978                         fprintf(stderr, "Out of memory\n");
979                         break;
980                 }
981
982                 rc = lst_add_nodes_ioctl(name, count, ids, &head);
983
984                 free(ids);
985
986                 if (rc == 0) {
987                         lst_free_rpcent(&head);
988                         fprintf(stderr, "%s are added to session\n", argv[i]);
989                         continue;
990                 }
991
992                 if (rc == -1) {
993                         lst_free_rpcent(&head);
994                         lst_print_error("group", "Failed to add nodes %s: %s\n",
995                                         argv[i], strerror(errno));
996                         break;
997                 }
998
999                 lst_print_transerr(&head, "create session");
1000                 lst_free_rpcent(&head);
1001         }
1002
1003         return rc;
1004 }
1005
1006 int
1007 lst_del_group_ioctl (char *name)
1008 {
1009         lstio_group_del_args_t args = {0};
1010
1011         args.lstio_grp_key   = session_key;
1012         args.lstio_grp_nmlen = strlen(name);
1013         args.lstio_grp_namep = name;
1014
1015         return lst_ioctl(LSTIO_GROUP_DEL, &args, sizeof(args));
1016 }
1017
1018 int
1019 jt_lst_del_group(int argc, char **argv)
1020 {
1021         int     rc;
1022
1023         if (session_key == 0) {
1024                 fprintf(stderr,
1025                         "Can't find env LST_SESSION or value is not valid\n");
1026                 return -1;
1027         }
1028
1029         if (argc != 2) {
1030                 lst_print_usage(argv[0]);
1031                 return -1;
1032         }
1033
1034         rc = lst_del_group_ioctl(argv[1]);
1035         if (rc == 0) {
1036                 fprintf(stdout, "Group is deleted\n");
1037                 return 0;
1038         }
1039
1040         if (rc == -1) {
1041                 lst_print_error("group", "Failed to delete group: %s\n",
1042                                 strerror(errno));
1043                 return rc;
1044         }
1045
1046         fprintf(stderr, "Group is deleted with some errors\n");
1047
1048         if (trans_stat.trs_rpc_errno != 0) {
1049                 fprintf(stderr, "[RPC] Failed to send %d end session RPCs: %s\n",
1050                         lstcon_rpc_stat_failure(&trans_stat, 0),
1051                         strerror(trans_stat.trs_rpc_errno));
1052         }
1053
1054         if (trans_stat.trs_fwk_errno != 0) {
1055                 fprintf(stderr,
1056                         "[FWK] Failed to end session on %d nodes: %s\n",
1057                         lstcon_sesop_stat_failure(&trans_stat, 0),
1058                         strerror(trans_stat.trs_fwk_errno));
1059         }
1060
1061         return -1;
1062 }
1063
1064 int
1065 lst_update_group_ioctl(int opc, char *name, int clean, int count,
1066                        lnet_process_id_t *ids, cfs_list_t *resultp)
1067 {
1068         lstio_group_update_args_t args = {0};
1069
1070         args.lstio_grp_key      = session_key;
1071         args.lstio_grp_opc      = opc;
1072         args.lstio_grp_args     = clean;
1073         args.lstio_grp_nmlen    = strlen(name);
1074         args.lstio_grp_namep    = name;
1075         args.lstio_grp_count    = count;
1076         args.lstio_grp_idsp     = ids;
1077         args.lstio_grp_resultp  = resultp;
1078
1079         return lst_ioctl(LSTIO_GROUP_UPDATE, &args, sizeof(args));
1080 }
1081
1082 int
1083 jt_lst_update_group(int argc, char **argv)
1084 {
1085         cfs_list_t         head;
1086         lnet_process_id_t *ids = NULL;
1087         char              *str = NULL;
1088         char              *grp = NULL;
1089         int                optidx = 0;
1090         int                count = 0;
1091         int                clean = 0;
1092         int                opc = 0;
1093         int                rc;
1094         int                c;
1095
1096         static struct option update_group_opts[] =
1097         {
1098                 {"refresh", no_argument,       0, 'f' },
1099                 {"clean",   required_argument, 0, 'c' },
1100                 {"remove",  required_argument, 0, 'r' },
1101                 {0,         0,                 0,  0  }
1102         };
1103
1104         if (session_key == 0) {
1105                 fprintf(stderr,
1106                         "Can't find env LST_SESSION or value is not valid\n");
1107                 return -1;
1108         }
1109
1110         while (1) {
1111                 c = getopt_long(argc, argv, "fc:r:",
1112                                 update_group_opts, &optidx);
1113
1114                 /* Detect the end of the options. */
1115                 if (c == -1)
1116                         break;
1117
1118                 switch (c) {
1119                 case 'f':
1120                         if (opc != 0) {
1121                                 lst_print_usage(argv[0]);
1122                                 return -1;
1123                         }
1124                         opc = LST_GROUP_REFRESH;
1125                         break;
1126
1127                 case 'r':
1128                         if (opc != 0) {
1129                                 lst_print_usage(argv[0]);
1130                                 return -1;
1131                         }
1132                         opc = LST_GROUP_RMND;
1133                         str = optarg;
1134                         break;
1135
1136                 case 'c':
1137                         clean = lst_node_str2state(optarg);
1138                         if (opc != 0 || clean <= 0) {
1139                                 lst_print_usage(argv[0]);
1140                                 return -1;
1141                         }
1142                         opc = LST_GROUP_CLEAN;
1143                         break;
1144
1145                 default:
1146                         lst_print_usage(argv[0]);
1147                         return -1;
1148                 }
1149         }
1150
1151         /* no OPC or group is specified */
1152         if (opc == 0 || optind != argc - 1) {
1153                 lst_print_usage(argv[0]);
1154                 return -1;
1155         }
1156
1157         grp = argv[optind];
1158
1159         CFS_INIT_LIST_HEAD(&head);
1160
1161         if (opc == LST_GROUP_RMND || opc == LST_GROUP_REFRESH) {
1162                 rc = lst_get_node_count(opc == LST_GROUP_RMND ? LST_OPC_NODES :
1163                                                                 LST_OPC_GROUP,
1164                                         opc == LST_GROUP_RMND ? str : grp,
1165                                         &count, &ids);
1166
1167                 if (rc != 0) {
1168                         fprintf(stderr, "Can't get count of nodes from %s: %s\n",
1169                                 opc == LST_GROUP_RMND ? str : grp,
1170                                 strerror(errno));
1171                         return -1;
1172                 }
1173
1174                 rc = lst_alloc_rpcent(&head, count, 0);
1175                 if (rc != 0) {
1176                         fprintf(stderr, "Out of memory\n");
1177                         free(ids);
1178                         return -1;
1179                 }
1180
1181         }
1182
1183         rc = lst_update_group_ioctl(opc, grp, clean, count, ids, &head);
1184
1185         if (ids != NULL)
1186                 free(ids);
1187
1188         if (rc == 0) {
1189                 lst_free_rpcent(&head);
1190                 return 0;
1191         }
1192
1193         if (rc == -1) {
1194                 lst_free_rpcent(&head);
1195                 lst_print_error("group", "Failed to update group: %s\n",
1196                                 strerror(errno));
1197                 return rc;
1198         }
1199
1200         lst_print_transerr(&head, "Updating group");
1201
1202         lst_free_rpcent(&head);
1203
1204         return rc;
1205 }
1206
1207 int
1208 lst_list_group_ioctl(int len, char *name, int idx)
1209 {
1210         lstio_group_list_args_t args = {0};
1211
1212         args.lstio_grp_key   = session_key;
1213         args.lstio_grp_idx   = idx;
1214         args.lstio_grp_nmlen = len;
1215         args.lstio_grp_namep = name;
1216
1217         return lst_ioctl(LSTIO_GROUP_LIST, &args, sizeof(args));
1218 }
1219
1220 int
1221 lst_info_group_ioctl(char *name, lstcon_ndlist_ent_t *gent,
1222                      int *idx, int *count, lstcon_node_ent_t *dents)
1223 {
1224         lstio_group_info_args_t args = {0};
1225
1226         args.lstio_grp_key    = session_key;
1227         args.lstio_grp_nmlen  = strlen(name);
1228         args.lstio_grp_namep  = name;
1229         args.lstio_grp_entp   = gent;
1230         args.lstio_grp_idxp   = idx;
1231         args.lstio_grp_ndentp = count;
1232         args.lstio_grp_dentsp = dents;
1233
1234         return lst_ioctl(LSTIO_GROUP_INFO, &args, sizeof(args));
1235 }
1236
1237 int
1238 lst_list_group_all(void)
1239 {
1240         char  name[LST_NAME_SIZE];
1241         int   rc;
1242         int   i;
1243
1244         /* no group is specified, list name of all groups */
1245         for (i = 0; ; i++) {
1246                 rc = lst_list_group_ioctl(LST_NAME_SIZE, name, i);
1247                 if (rc == 0) {
1248                         fprintf(stdout, "%d) %s\n", i + 1, name);
1249                         continue;
1250                 }
1251
1252                 if (errno == ENOENT)
1253                         break;
1254
1255                 lst_print_error("group", "Failed to list group: %s\n",
1256                                 strerror(errno));
1257                 return -1;
1258         }
1259
1260         fprintf(stdout, "Total %d groups\n", i);
1261
1262         return 0;
1263 }
1264
1265 #define LST_NODES_TITLE "\tACTIVE\tBUSY\tDOWN\tUNKNOWN\tTOTAL\n"
1266
1267 int
1268 jt_lst_list_group(int argc, char **argv)
1269 {
1270         lstcon_ndlist_ent_t  gent;
1271         lstcon_node_ent_t   *dents;
1272         int               optidx  = 0;
1273         int               verbose = 0;
1274         int               active  = 0;
1275         int               busy    = 0;
1276         int               down    = 0;
1277         int               unknown = 0;
1278         int               all     = 0;
1279         int               count;
1280         int               index;
1281         int               i;
1282         int               j;
1283         int               c;
1284         int               rc = 0;
1285
1286         static struct option list_group_opts[] =
1287         {
1288                 {"active",  no_argument, 0, 'a' },
1289                 {"busy",    no_argument, 0, 'b' },
1290                 {"down",    no_argument, 0, 'd' },
1291                 {"unknown", no_argument, 0, 'u' },
1292                 {"all",     no_argument, 0, 'l' },
1293                 {0,         0,           0,  0  }
1294         };
1295
1296         if (session_key == 0) {
1297                 fprintf(stderr,
1298                         "Can't find env LST_SESSION or value is not valid\n");
1299                 return -1;
1300         }
1301
1302         while (1) {
1303                 c = getopt_long(argc, argv, "abdul",
1304                                 list_group_opts, &optidx);
1305
1306                 if (c == -1)
1307                         break;
1308
1309                 switch (c) {
1310                 case 'a':
1311                         verbose = active = 1;
1312                         all = 0;
1313                         break;
1314                 case 'b':
1315                         verbose = busy = 1;
1316                         all = 0;
1317                         break;
1318                 case 'd':
1319                         verbose = down = 1;
1320                         all = 0;
1321                         break;
1322                 case 'u':
1323                         verbose = unknown = 1;
1324                         all = 0;
1325                         break;
1326                 case 'l':
1327                         verbose = all = 1;
1328                         break;
1329                 default:
1330                         lst_print_usage(argv[0]);
1331                         return -1;
1332                 }
1333         }
1334
1335         if (optind == argc) {
1336                 /* no group is specified, list name of all groups */
1337                 rc = lst_list_group_all();
1338
1339                 return rc;
1340         }
1341
1342         if (!verbose)
1343                 fprintf(stdout, LST_NODES_TITLE);
1344
1345         /* list nodes in specified groups */
1346         for (i = optind; i < argc; i++) {
1347                 rc = lst_info_group_ioctl(argv[i], &gent, NULL, NULL, NULL);
1348                 if (rc != 0) {
1349                         if (errno == ENOENT) {
1350                                 rc = 0;
1351                                 break;
1352                         }
1353
1354                         lst_print_error("group", "Failed to list group\n",
1355                                         strerror(errno));
1356                         break;
1357                 }
1358
1359                 if (!verbose) {
1360                         fprintf(stdout, "\t%d\t%d\t%d\t%d\t%d\t%s\n",
1361                                 gent.nle_nactive, gent.nle_nbusy,
1362                                 gent.nle_ndown, gent.nle_nunknown,
1363                                 gent.nle_nnode, argv[i]);
1364                         continue;
1365                 }
1366
1367                 fprintf(stdout, "Group [ %s ]\n", argv[i]);
1368
1369                 if (gent.nle_nnode == 0) {
1370                         fprintf(stdout, "No nodes found [ %s ]\n", argv[i]);
1371                         continue;
1372                 }
1373
1374                 count = gent.nle_nnode;
1375
1376                 dents = malloc(count * sizeof(lstcon_node_ent_t));
1377                 if (dents == NULL) {
1378                         fprintf(stderr, "Failed to malloc: %s\n",
1379                                 strerror(errno));
1380                         return -1;
1381                 }
1382
1383                 index = 0;
1384                 rc = lst_info_group_ioctl(argv[i], &gent, &index, &count, dents);
1385                 if (rc != 0) {
1386                         lst_print_error("group", "Failed to list group: %s\n",
1387                                         strerror(errno));
1388                         free(dents);
1389                         return -1;
1390                 }
1391
1392                 for (j = 0, c = 0; j < count; j++) {
1393                         if (all ||
1394                             ((active  &&  dents[j].nde_state == LST_NODE_ACTIVE) ||
1395                              (busy    &&  dents[j].nde_state == LST_NODE_BUSY)   ||
1396                              (down    &&  dents[j].nde_state == LST_NODE_DOWN)   ||
1397                              (unknown &&  dents[j].nde_state == LST_NODE_UNKNOWN))) {
1398
1399                                 fprintf(stdout, "\t%s: %s\n",
1400                                         libcfs_id2str(dents[j].nde_id),
1401                                         lst_node_state2str(dents[j].nde_state));
1402                                 c++;
1403                         }
1404                 }
1405
1406                 fprintf(stdout, "Total %d nodes [ %s ]\n", c, argv[i]);
1407
1408                 free(dents);
1409         }
1410
1411         return rc;
1412 }
1413
1414 int
1415 lst_stat_ioctl (char *name, int count, lnet_process_id_t *idsp,
1416                 int timeout, cfs_list_t *resultp)
1417 {
1418         lstio_stat_args_t args = {0};
1419
1420         args.lstio_sta_key     = session_key;
1421         args.lstio_sta_timeout = timeout;
1422         args.lstio_sta_nmlen   = strlen(name);
1423         args.lstio_sta_namep   = name;
1424         args.lstio_sta_count   = count;
1425         args.lstio_sta_idsp    = idsp;
1426         args.lstio_sta_resultp = resultp;
1427
1428         return lst_ioctl (LSTIO_STAT_QUERY, &args, sizeof(args));
1429 }
1430
1431 typedef struct {
1432         cfs_list_t              srp_link;
1433         int                     srp_count;
1434         char                   *srp_name;
1435         lnet_process_id_t      *srp_ids;
1436         cfs_list_t              srp_result[2];
1437 } lst_stat_req_param_t;
1438
1439 static void
1440 lst_stat_req_param_free(lst_stat_req_param_t *srp)
1441 {
1442         int     i;
1443
1444         for (i = 0; i < 2; i++)
1445                 lst_free_rpcent(&srp->srp_result[i]);
1446
1447         if (srp->srp_ids != NULL)
1448                 free(srp->srp_ids);
1449
1450         free(srp);
1451 }
1452
1453 static int
1454 lst_stat_req_param_alloc(char *name, lst_stat_req_param_t **srpp, int save_old)
1455 {
1456         lst_stat_req_param_t *srp = NULL;
1457         int                   count = save_old ? 2 : 1;
1458         int                   rc;
1459         int                   i;
1460
1461         srp = malloc(sizeof(*srp));
1462         if (srp == NULL)
1463                 return -ENOMEM;
1464
1465         memset(srp, 0, sizeof(*srp));
1466         CFS_INIT_LIST_HEAD(&srp->srp_result[0]);
1467         CFS_INIT_LIST_HEAD(&srp->srp_result[1]);
1468
1469         rc = lst_get_node_count(LST_OPC_GROUP, name,
1470                                 &srp->srp_count, NULL);
1471         if (rc != 0 && errno == ENOENT) {
1472                 rc = lst_get_node_count(LST_OPC_NODES, name,
1473                                         &srp->srp_count, &srp->srp_ids);
1474         }
1475
1476         if (rc != 0) {
1477                 fprintf(stderr,
1478                         "Failed to get count of nodes from %s: %s\n",
1479                         name, strerror(errno));
1480                 lst_stat_req_param_free(srp);
1481
1482                 return rc;
1483         }
1484
1485         srp->srp_name = name;
1486
1487         for (i = 0; i < count; i++) {
1488                 rc = lst_alloc_rpcent(&srp->srp_result[i], srp->srp_count,
1489                                       sizeof(sfw_counters_t)  +
1490                                       sizeof(srpc_counters_t) +
1491                                       sizeof(lnet_counters_t));
1492                 if (rc != 0) {
1493                         fprintf(stderr, "Out of memory\n");
1494                         break;
1495                 }
1496         }
1497
1498         if (rc == 0) {
1499                 *srpp = srp;
1500                 return 0;
1501         }
1502
1503         lst_stat_req_param_free(srp);
1504
1505         return rc;
1506 }
1507
1508 typedef struct {
1509         /* TODO */
1510         int foo;
1511 } lst_srpc_stat_result;
1512
1513 #define LST_LNET_AVG    0
1514 #define LST_LNET_MIN    1
1515 #define LST_LNET_MAX    2
1516
1517 typedef struct {
1518         float           lnet_avg_sndrate;
1519         float           lnet_min_sndrate;
1520         float           lnet_max_sndrate;
1521         float           lnet_total_sndrate;
1522
1523         float           lnet_avg_rcvrate;
1524         float           lnet_min_rcvrate;
1525         float           lnet_max_rcvrate;
1526         float           lnet_total_rcvrate;
1527
1528         float           lnet_avg_sndperf;
1529         float           lnet_min_sndperf;
1530         float           lnet_max_sndperf;
1531         float           lnet_total_sndperf;
1532
1533         float           lnet_avg_rcvperf;
1534         float           lnet_min_rcvperf;
1535         float           lnet_max_rcvperf;
1536         float           lnet_total_rcvperf;
1537
1538         int             lnet_stat_count;
1539 } lst_lnet_stat_result_t;
1540
1541 lst_lnet_stat_result_t lnet_stat_result;
1542
1543 static float
1544 lst_lnet_stat_value(int bw, int send, int off)
1545 {
1546         float  *p;
1547
1548         p = bw ? &lnet_stat_result.lnet_avg_sndperf :
1549                  &lnet_stat_result.lnet_avg_sndrate;
1550
1551         if (!send)
1552                 p += 4;
1553
1554         p += off;
1555
1556         return *p;
1557 }
1558
1559 void
1560 lst_cal_lnet_stat(float delta, lnet_counters_t *lnet_new,
1561                   lnet_counters_t *lnet_old)
1562 {
1563         float perf;
1564         float rate;
1565
1566         perf = (float)(lnet_new->send_length -
1567                        lnet_old->send_length) / (1024 * 1024) / delta;
1568         lnet_stat_result.lnet_total_sndperf += perf;
1569
1570         if (lnet_stat_result.lnet_min_sndperf > perf ||
1571             lnet_stat_result.lnet_min_sndperf == 0)
1572                 lnet_stat_result.lnet_min_sndperf = perf;
1573
1574         if (lnet_stat_result.lnet_max_sndperf < perf)
1575                 lnet_stat_result.lnet_max_sndperf = perf;
1576
1577         perf = (float)(lnet_new->recv_length -
1578                        lnet_old->recv_length) / (1024 * 1024) / delta;
1579         lnet_stat_result.lnet_total_rcvperf += perf;
1580
1581         if (lnet_stat_result.lnet_min_rcvperf > perf ||
1582             lnet_stat_result.lnet_min_rcvperf == 0)
1583                 lnet_stat_result.lnet_min_rcvperf = perf;
1584
1585         if (lnet_stat_result.lnet_max_rcvperf < perf)
1586                 lnet_stat_result.lnet_max_rcvperf = perf;
1587
1588         rate = (lnet_new->send_count - lnet_old->send_count) / delta;
1589         lnet_stat_result.lnet_total_sndrate += rate;
1590
1591         if (lnet_stat_result.lnet_min_sndrate > rate ||
1592             lnet_stat_result.lnet_min_sndrate == 0)
1593                 lnet_stat_result.lnet_min_sndrate = rate;
1594
1595         if (lnet_stat_result.lnet_max_sndrate < rate)
1596                 lnet_stat_result.lnet_max_sndrate = rate;
1597
1598         rate = (lnet_new->recv_count - lnet_old->recv_count) / delta;
1599         lnet_stat_result.lnet_total_rcvrate += rate;
1600
1601         if (lnet_stat_result.lnet_min_rcvrate > rate ||
1602             lnet_stat_result.lnet_min_rcvrate == 0)
1603                 lnet_stat_result.lnet_min_rcvrate = rate;
1604
1605         if (lnet_stat_result.lnet_max_rcvrate < rate)
1606                 lnet_stat_result.lnet_max_rcvrate = rate;
1607
1608         lnet_stat_result.lnet_stat_count ++;
1609
1610         lnet_stat_result.lnet_avg_sndrate = lnet_stat_result.lnet_total_sndrate /
1611                                             lnet_stat_result.lnet_stat_count;
1612         lnet_stat_result.lnet_avg_rcvrate = lnet_stat_result.lnet_total_rcvrate /
1613                                             lnet_stat_result.lnet_stat_count;
1614
1615         lnet_stat_result.lnet_avg_sndperf = lnet_stat_result.lnet_total_sndperf /
1616                                             lnet_stat_result.lnet_stat_count;
1617         lnet_stat_result.lnet_avg_rcvperf = lnet_stat_result.lnet_total_rcvperf /
1618                                             lnet_stat_result.lnet_stat_count;
1619
1620 }
1621
1622 void
1623 lst_print_lnet_stat(char *name, int bwrt, int rdwr, int type)
1624 {
1625         int     start1 = 0;
1626         int     end1   = 1;
1627         int     start2 = 0;
1628         int     end2   = 1;
1629         int     i;
1630         int     j;
1631
1632         if (lnet_stat_result.lnet_stat_count == 0)
1633                 return;
1634
1635         if (bwrt == 1) /* bw only */
1636                 start1 = 1;
1637
1638         if (bwrt == 2) /* rates only */
1639                 end1 = 0;
1640
1641         if (rdwr == 1) /* recv only */
1642                 start2 = 1;
1643
1644         if (rdwr == 2) /* send only */
1645                 end2 = 0;
1646
1647         for (i = start1; i <= end1; i++) {
1648                 fprintf(stdout, "[LNet %s of %s]\n",
1649                         i == 0 ? "Rates" : "Bandwidth", name);
1650
1651                 for (j = start2; j <= end2; j++) {
1652                         fprintf(stdout, "[%c] ", j == 0 ? 'R' : 'W');
1653
1654                         if ((type & 1) != 0) {
1655                                 fprintf(stdout, i == 0 ? "Avg: %-8.0f RPC/s " :
1656                                                          "Avg: %-8.2f MB/s  ",
1657                                         lst_lnet_stat_value(i, j, 0));
1658                         }
1659
1660                         if ((type & 2) != 0) {
1661                                 fprintf(stdout, i == 0 ? "Min: %-8.0f RPC/s " :
1662                                                          "Min: %-8.2f MB/s  ",
1663                                         lst_lnet_stat_value(i, j, 1));
1664                         }
1665
1666                         if ((type & 4) != 0) {
1667                                 fprintf(stdout, i == 0 ? "Max: %-8.0f RPC/s" :
1668                                                          "Max: %-8.2f MB/s",
1669                                         lst_lnet_stat_value(i, j, 2));
1670                         }
1671
1672                         fprintf(stdout, "\n");
1673                 }
1674         }
1675 }
1676
1677 void
1678 lst_print_stat(char *name, cfs_list_t *resultp,
1679                int idx, int lnet, int bwrt, int rdwr, int type)
1680 {
1681         cfs_list_t        tmp[2];
1682         lstcon_rpc_ent_t *new;
1683         lstcon_rpc_ent_t *old;
1684         sfw_counters_t   *sfwk_new;
1685         sfw_counters_t   *sfwk_old;
1686         srpc_counters_t  *srpc_new;
1687         srpc_counters_t  *srpc_old;
1688         lnet_counters_t  *lnet_new;
1689         lnet_counters_t  *lnet_old;
1690         float             delta;
1691         int               errcount = 0;
1692
1693         CFS_INIT_LIST_HEAD(&tmp[0]);
1694         CFS_INIT_LIST_HEAD(&tmp[1]);
1695
1696         memset(&lnet_stat_result, 0, sizeof(lnet_stat_result));
1697
1698         while (!cfs_list_empty(&resultp[idx])) {
1699                 if (cfs_list_empty(&resultp[1 - idx])) {
1700                         fprintf(stderr, "Group is changed, re-run stat\n");
1701                         break;
1702                 }
1703
1704                 new = cfs_list_entry(resultp[idx].next, lstcon_rpc_ent_t,
1705                                      rpe_link);
1706                 old = cfs_list_entry(resultp[1 - idx].next, lstcon_rpc_ent_t,
1707                                      rpe_link);
1708
1709                 /* first time get stats result, can't calculate diff */
1710                 if (new->rpe_peer.nid == LNET_NID_ANY)
1711                         break;
1712
1713                 if (new->rpe_peer.nid != old->rpe_peer.nid ||
1714                     new->rpe_peer.pid != old->rpe_peer.pid) {
1715                         /* Something wrong. i.e, somebody change the group */
1716                         break;
1717                 }
1718
1719                 cfs_list_del(&new->rpe_link);
1720                 cfs_list_add_tail(&new->rpe_link, &tmp[idx]);
1721
1722                 cfs_list_del(&old->rpe_link);
1723                 cfs_list_add_tail(&old->rpe_link, &tmp[1 - idx]);
1724
1725                 if (new->rpe_rpc_errno != 0 || new->rpe_fwk_errno != 0 ||
1726                     old->rpe_rpc_errno != 0 || old->rpe_fwk_errno != 0) {
1727                         errcount ++;
1728                         continue;
1729                 }
1730
1731                 sfwk_new = (sfw_counters_t *)&new->rpe_payload[0];
1732                 sfwk_old = (sfw_counters_t *)&old->rpe_payload[0];
1733
1734                 srpc_new = (srpc_counters_t *)((char *)sfwk_new + sizeof(*sfwk_new));
1735                 srpc_old = (srpc_counters_t *)((char *)sfwk_old + sizeof(*sfwk_old));
1736
1737                 lnet_new = (lnet_counters_t *)((char *)srpc_new + sizeof(*srpc_new));
1738                 lnet_old = (lnet_counters_t *)((char *)srpc_old + sizeof(*srpc_old));
1739
1740                 /* use the timestamp from the remote node, not our rpe_stamp
1741                  * from when we copied up the data out of the kernel */
1742
1743                 delta = (float) (sfwk_new->running_ms -
1744                                  sfwk_old->running_ms) / 1000;
1745
1746                 if (!lnet) /* TODO */
1747                         continue;
1748
1749                 lst_cal_lnet_stat(delta, lnet_new, lnet_old);
1750         }
1751
1752         cfs_list_splice(&tmp[idx], &resultp[idx]);
1753         cfs_list_splice(&tmp[1 - idx], &resultp[1 - idx]);
1754
1755         if (errcount > 0)
1756                 fprintf(stdout, "Failed to stat on %d nodes\n", errcount);
1757
1758         if (!lnet)  /* TODO */
1759                 return;
1760
1761         lst_print_lnet_stat(name, bwrt, rdwr, type);
1762 }
1763
1764 int
1765 jt_lst_stat(int argc, char **argv)
1766 {
1767         cfs_list_t            head;
1768         lst_stat_req_param_t *srp;
1769         time_t                last    = 0;
1770         int                   optidx  = 0;
1771         int                   timeout = 5; /* default timeout, 5 sec */
1772         int                   delay   = 5; /* default delay, 5 sec */
1773         int                   count   = -1; /* run forever */
1774         int                   lnet    = 1; /* lnet stat by default */
1775         int                   bwrt    = 0;
1776         int                   rdwr    = 0;
1777         int                   type    = -1;
1778         int                   idx     = 0;
1779         int                   rc;
1780         int                   c;
1781
1782         static struct option stat_opts[] =
1783         {
1784                 {"timeout", required_argument, 0, 't' },
1785                 {"delay"  , required_argument, 0, 'd' },
1786                 {"count"  , required_argument, 0, 'o' },
1787                 {"lnet"   , no_argument,       0, 'l' },
1788                 {"rpc"    , no_argument,       0, 'c' },
1789                 {"bw"     , no_argument,       0, 'b' },
1790                 {"rate"   , no_argument,       0, 'a' },
1791                 {"read"   , no_argument,       0, 'r' },
1792                 {"write"  , no_argument,       0, 'w' },
1793                 {"avg"    , no_argument,       0, 'g' },
1794                 {"min"    , no_argument,       0, 'n' },
1795                 {"max"    , no_argument,       0, 'x' },
1796                 {0,         0,                 0,  0  }
1797         };
1798
1799         if (session_key == 0) {
1800                 fprintf(stderr,
1801                         "Can't find env LST_SESSION or value is not valid\n");
1802                 return -1;
1803         }
1804
1805         while (1) {
1806                 c = getopt_long(argc, argv, "t:d:lcbarwgnx", stat_opts, &optidx);
1807
1808                 if (c == -1)
1809                         break;
1810
1811                 switch (c) {
1812                 case 't':
1813                         timeout = atoi(optarg);
1814                         break;
1815                 case 'd':
1816                         delay = atoi(optarg);
1817                         break;
1818                 case 'o':
1819                         count = atoi(optarg);
1820                         break;
1821                 case 'l':
1822                         lnet = 1;
1823                         break;
1824                 case 'c':
1825                         lnet = 0;
1826                         break;
1827                 case 'b':
1828                         bwrt |= 1;
1829                         break;
1830                 case 'a':
1831                         bwrt |= 2;
1832                         break;
1833                 case 'r':
1834                         rdwr |= 1;
1835                         break;
1836                 case 'w':
1837                         rdwr |= 2;
1838                         break;
1839                 case 'g':
1840                         if (type == -1) {
1841                                 type = 1;
1842                                 break;
1843                         }
1844                         type |= 1;
1845                         break;
1846                 case 'n':
1847                         if (type == -1) {
1848                                 type = 2;
1849                                 break;
1850                         }
1851                         type |= 2;
1852                         break;
1853                 case 'x':
1854                         if (type == -1) {
1855                                 type = 4;
1856                                 break;
1857                         }
1858                         type |= 4;
1859                         break;
1860                 default:
1861                         lst_print_usage(argv[0]);
1862                         return -1;
1863                 }
1864         }
1865
1866         if (optind == argc) {
1867                 lst_print_usage(argv[0]);
1868                 return -1;
1869         }
1870
1871         if (timeout <= 0 || delay <= 0) {
1872                 fprintf(stderr, "Invalid timeout or delay value\n");
1873                 return -1;
1874         }
1875
1876         if (count < -1) {
1877             fprintf(stderr, "Invalid count value\n");
1878             return -1;
1879         }
1880
1881         /* extra count to get first data point */
1882         if (count != -1)
1883             count++;
1884
1885         CFS_INIT_LIST_HEAD(&head);
1886
1887         while (optind < argc) {
1888                 rc = lst_stat_req_param_alloc(argv[optind++], &srp, 1);
1889                 if (rc != 0)
1890                         goto out;
1891
1892                 cfs_list_add_tail(&srp->srp_link, &head);
1893         }
1894
1895         do {
1896                 time_t  now = time(NULL);
1897
1898                 if (now - last < delay) {
1899                         sleep(delay - now + last);
1900                         time(&now);
1901                 }
1902
1903                 last = now;
1904
1905                 cfs_list_for_each_entry_typed(srp, &head, lst_stat_req_param_t,
1906                                               srp_link) {
1907                         rc = lst_stat_ioctl(srp->srp_name,
1908                                             srp->srp_count, srp->srp_ids,
1909                                             timeout, &srp->srp_result[idx]);
1910                         if (rc == -1) {
1911                                 lst_print_error("stat", "Failed to stat %s: %s\n",
1912                                                 srp->srp_name, strerror(errno));
1913                                 goto out;
1914                         }
1915
1916                         lst_print_stat(srp->srp_name, srp->srp_result,
1917                                        idx, lnet, bwrt, rdwr, type);
1918
1919                         lst_reset_rpcent(&srp->srp_result[1 - idx]);
1920                 }
1921
1922                 idx = 1 - idx;
1923
1924                 if (count > 0)
1925                         count--;
1926         } while (count == -1 || count > 0);
1927
1928 out:
1929         while (!cfs_list_empty(&head)) {
1930                 srp = cfs_list_entry(head.next, lst_stat_req_param_t, srp_link);
1931
1932                 cfs_list_del(&srp->srp_link);
1933                 lst_stat_req_param_free(srp);
1934         }
1935
1936         return rc;
1937 }
1938
1939 int
1940 jt_lst_show_error(int argc, char **argv)
1941 {
1942         cfs_list_t            head;
1943         lst_stat_req_param_t *srp;
1944         lstcon_rpc_ent_t     *ent;
1945         sfw_counters_t       *sfwk;
1946         srpc_counters_t      *srpc;
1947         lnet_counters_t      *lnet;
1948         int                   show_rpc = 1;
1949         int                   optidx   = 0;
1950         int                   rc       = 0;
1951         int                   ecount;
1952         int                   c;
1953
1954         static struct option  show_error_opts[] =
1955         {
1956                 {"session", no_argument,       0, 's' },
1957                 {0,         0,                 0,  0  }
1958         };
1959
1960         if (session_key == 0) {
1961                 fprintf(stderr,
1962                         "Can't find env LST_SESSION or value is not valid\n");
1963                 return -1;
1964         }
1965
1966         while (1) {
1967                 c = getopt_long(argc, argv, "s", show_error_opts, &optidx);
1968
1969                 if (c == -1)
1970                         break;
1971
1972                 switch (c) {
1973                 case 's':
1974                         show_rpc  = 0;
1975                         break;
1976
1977                 default:
1978                         lst_print_usage(argv[0]);
1979                         return -1;
1980                 }
1981         }
1982
1983         if (optind == argc) {
1984                 lst_print_usage(argv[0]);
1985                 return -1;
1986         }
1987
1988         CFS_INIT_LIST_HEAD(&head);
1989
1990         while (optind < argc) {
1991                 rc = lst_stat_req_param_alloc(argv[optind++], &srp, 0);
1992                 if (rc != 0)
1993                         goto out;
1994
1995                 cfs_list_add_tail(&srp->srp_link, &head);
1996         }
1997
1998         cfs_list_for_each_entry_typed(srp, &head, lst_stat_req_param_t,
1999                                       srp_link) {
2000                 rc = lst_stat_ioctl(srp->srp_name, srp->srp_count,
2001                                     srp->srp_ids, 10, &srp->srp_result[0]);
2002
2003                 if (rc == -1) {
2004                         lst_print_error(srp->srp_name, "Failed to show errors of %s: %s\n",
2005                                         srp->srp_name, strerror(errno));
2006                         goto out;
2007                 }
2008
2009                 fprintf(stdout, "%s:\n", srp->srp_name);
2010
2011                 ecount = 0;
2012
2013                 cfs_list_for_each_entry_typed(ent, &srp->srp_result[0],
2014                                               lstcon_rpc_ent_t, rpe_link) {
2015                         if (ent->rpe_rpc_errno != 0) {
2016                                 ecount ++;
2017                                 fprintf(stderr, "RPC failure, can't show error on %s\n",
2018                                         libcfs_id2str(ent->rpe_peer));
2019                                 continue;
2020                         }
2021
2022                         if (ent->rpe_fwk_errno != 0) {
2023                                 ecount ++;
2024                                 fprintf(stderr, "Framework failure, can't show error on %s\n",
2025                                         libcfs_id2str(ent->rpe_peer));
2026                                 continue;
2027                         }
2028
2029                         sfwk = (sfw_counters_t *)&ent->rpe_payload[0];
2030                         srpc = (srpc_counters_t *)((char *)sfwk + sizeof(*sfwk));
2031                         lnet = (lnet_counters_t *)((char *)srpc + sizeof(*srpc));
2032
2033                         if (srpc->errors == 0 &&
2034                             sfwk->brw_errors == 0 && sfwk->ping_errors == 0)
2035                                 continue;
2036
2037                         if (!show_rpc  &&
2038                             sfwk->brw_errors == 0 && sfwk->ping_errors == 0)
2039                                 continue;
2040
2041                         ecount ++;
2042
2043                         fprintf(stderr, "%s: [Session %d brw errors, %d ping errors]%c",
2044                                 libcfs_id2str(ent->rpe_peer),
2045                                 sfwk->brw_errors, sfwk->ping_errors,
2046                                 show_rpc  ? ' ' : '\n');
2047
2048                         if (!show_rpc)
2049                                 continue;
2050
2051                         fprintf(stderr, "[RPC: %d errors, %d dropped, %d expired]\n",
2052                                 srpc->errors, srpc->rpcs_dropped, srpc->rpcs_expired);
2053                 }
2054
2055                 fprintf(stdout, "Total %d error nodes in %s\n", ecount, srp->srp_name);
2056         }
2057 out:
2058         while (!cfs_list_empty(&head)) {
2059                 srp = cfs_list_entry(head.next, lst_stat_req_param_t, srp_link);
2060
2061                 cfs_list_del(&srp->srp_link);
2062                 lst_stat_req_param_free(srp);
2063         }
2064
2065         return rc;
2066 }
2067
2068 int
2069 lst_add_batch_ioctl (char *name)
2070 {
2071         lstio_batch_add_args_t args = {0};
2072
2073         args.lstio_bat_key   = session_key;
2074         args.lstio_bat_nmlen = strlen(name);
2075         args.lstio_bat_namep = name;
2076
2077         return lst_ioctl (LSTIO_BATCH_ADD, &args, sizeof(args));
2078 }
2079
2080 int
2081 jt_lst_add_batch(int argc, char **argv)
2082 {
2083         char   *name;
2084         int     rc;
2085
2086         if (session_key == 0) {
2087                 fprintf(stderr,
2088                         "Can't find env LST_SESSION or value is not valid\n");
2089                 return -1;
2090         }
2091
2092         if (argc != 2) {
2093                 lst_print_usage(argv[0]);
2094                 return -1;
2095         }
2096
2097         name = argv[1];
2098         if (strlen(name) >= LST_NAME_SIZE) {
2099                 fprintf(stderr, "Name length is limited to %d\n",
2100                         LST_NAME_SIZE - 1);
2101                 return -1;
2102         }
2103
2104         rc = lst_add_batch_ioctl(name);
2105         if (rc == 0)
2106                 return 0;
2107
2108         lst_print_error("batch", "Failed to create batch: %s\n",
2109                         strerror(errno));
2110
2111         return -1;
2112 }
2113
2114 int
2115 lst_start_batch_ioctl (char *name, int timeout, cfs_list_t *resultp)
2116 {
2117         lstio_batch_run_args_t args = {0};
2118
2119         args.lstio_bat_key     = session_key;
2120         args.lstio_bat_timeout = timeout;
2121         args.lstio_bat_nmlen   = strlen(name);
2122         args.lstio_bat_namep   = name;
2123         args.lstio_bat_resultp = resultp;
2124
2125         return lst_ioctl(LSTIO_BATCH_START, &args, sizeof(args));
2126 }
2127
2128 int
2129 jt_lst_start_batch(int argc, char **argv)
2130 {
2131         cfs_list_t        head;
2132         char             *batch;
2133         int               optidx  = 0;
2134         int               timeout = 0;
2135         int               count = 0;
2136         int               rc;
2137         int               c;
2138
2139         static struct option start_batch_opts[] =
2140         {
2141                 {"timeout", required_argument, 0, 't' },
2142                 {0,         0,                 0,  0  }
2143         };
2144
2145         if (session_key == 0) {
2146                 fprintf(stderr,
2147                         "Can't find env LST_SESSION or value is not valid\n");
2148                 return -1;
2149         }
2150
2151         while (1) {
2152                 c = getopt_long(argc, argv, "t:",
2153                                 start_batch_opts, &optidx);
2154
2155                 /* Detect the end of the options. */
2156                 if (c == -1)
2157                         break;
2158
2159                 switch (c) {
2160                 case 't':
2161                         timeout = atoi(optarg);
2162                         break;
2163                 default:
2164                         lst_print_usage(argv[0]);
2165                         return -1;
2166                 }
2167         }
2168
2169         if (optind == argc) {
2170                 batch = LST_DEFAULT_BATCH;
2171
2172         } else if (optind == argc - 1) {
2173                 batch = argv[optind];
2174
2175         } else {
2176                 lst_print_usage(argv[0]);
2177                 return -1;
2178         }
2179
2180         rc = lst_get_node_count(LST_OPC_BATCHCLI, batch, &count, NULL);
2181         if (rc != 0) {
2182                 fprintf(stderr, "Failed to get count of nodes from %s: %s\n",
2183                         batch, strerror(errno));
2184                 return -1;
2185         }
2186
2187         CFS_INIT_LIST_HEAD(&head);
2188
2189         rc = lst_alloc_rpcent(&head, count, 0);
2190         if (rc != 0) {
2191                 fprintf(stderr, "Out of memory\n");
2192                 return -1;
2193         }
2194
2195         rc = lst_start_batch_ioctl(batch, timeout, &head);
2196
2197         if (rc == 0) {
2198                 fprintf(stdout, "%s is running now\n", batch);
2199                 lst_free_rpcent(&head);
2200                 return 0;
2201         }
2202
2203         if (rc == -1) {
2204                 lst_print_error("batch", "Failed to start batch: %s\n",
2205                                 strerror(errno));
2206                 lst_free_rpcent(&head);
2207                 return rc;
2208         }
2209
2210         lst_print_transerr(&head, "Run batch");
2211
2212         lst_free_rpcent(&head);
2213
2214         return rc;
2215 }
2216
2217 int
2218 lst_stop_batch_ioctl(char *name, int force, cfs_list_t *resultp)
2219 {
2220         lstio_batch_stop_args_t args = {0};
2221
2222         args.lstio_bat_key     = session_key;
2223         args.lstio_bat_force   = force;
2224         args.lstio_bat_nmlen   = strlen(name);
2225         args.lstio_bat_namep   = name;
2226         args.lstio_bat_resultp = resultp;
2227
2228         return lst_ioctl(LSTIO_BATCH_STOP, &args, sizeof(args));
2229 }
2230
2231 int
2232 jt_lst_stop_batch(int argc, char **argv)
2233 {
2234         cfs_list_t        head;
2235         char             *batch;
2236         int               force = 0;
2237         int               optidx;
2238         int               count;
2239         int               rc;
2240         int               c;
2241
2242         static struct option stop_batch_opts[] =
2243         {
2244                 {"force",   no_argument,   0, 'f' },
2245                 {0,         0,             0,  0  }
2246         };
2247
2248         if (session_key == 0) {
2249                 fprintf(stderr,
2250                         "Can't find env LST_SESSION or value is not valid\n");
2251                 return -1;
2252         }
2253
2254         while (1) {
2255                 c = getopt_long(argc, argv, "f",
2256                                 stop_batch_opts, &optidx);
2257
2258                 /* Detect the end of the options. */
2259                 if (c == -1)
2260                         break;
2261
2262                 switch (c) {
2263                 case 'f':
2264                         force = 1;
2265                         break;
2266                 default:
2267                         lst_print_usage(argv[0]);
2268                         return -1;
2269                 }
2270         }
2271
2272         if (optind == argc) {
2273                 batch = LST_DEFAULT_BATCH;
2274
2275         } else if (optind == argc - 1) {
2276                 batch = argv[optind];
2277
2278         } else {
2279                 lst_print_usage(argv[0]);
2280                 return -1;
2281         }
2282
2283         rc = lst_get_node_count(LST_OPC_BATCHCLI, batch, &count, NULL);
2284         if (rc != 0) {
2285                 fprintf(stderr, "Failed to get count of nodes from %s: %s\n",
2286                         batch, strerror(errno));
2287                 return -1;
2288         }
2289
2290         CFS_INIT_LIST_HEAD(&head);
2291
2292         rc = lst_alloc_rpcent(&head, count, 0);
2293         if (rc != 0) {
2294                 fprintf(stderr, "Out of memory\n");
2295                 return -1;
2296         }
2297
2298         rc = lst_stop_batch_ioctl(batch, force, &head);
2299         if (rc != 0)
2300                 goto out;
2301
2302         while (1) {
2303                 lst_reset_rpcent(&head);
2304
2305                 rc = lst_query_batch_ioctl(batch, 0, 0, 30, &head);
2306                 if (rc != 0)
2307                         goto out;
2308
2309                 if (lstcon_tsbqry_stat_run(&trans_stat, 0)  == 0 &&
2310                     lstcon_tsbqry_stat_failure(&trans_stat, 0) == 0)
2311                         break;
2312
2313                 fprintf(stdout, "%d batch in stopping\n",
2314                         lstcon_tsbqry_stat_run(&trans_stat, 0));
2315                 sleep(1);
2316         }
2317
2318         fprintf(stdout, "Batch is stopped\n");
2319         lst_free_rpcent(&head);
2320
2321         return 0;
2322 out:
2323         if (rc == -1) {
2324                 lst_print_error("batch", "Failed to stop batch: %s\n",
2325                                 strerror(errno));
2326                 lst_free_rpcent(&head);
2327                 return -1;
2328         }
2329
2330         lst_print_transerr(&head, "stop batch");
2331
2332         lst_free_rpcent(&head);
2333
2334         return rc;
2335 }
2336
2337 int
2338 lst_list_batch_ioctl(int len, char *name, int index)
2339 {
2340         lstio_batch_list_args_t args = {0};
2341
2342         args.lstio_bat_key   = session_key;
2343         args.lstio_bat_idx   = index;
2344         args.lstio_bat_nmlen = len;
2345         args.lstio_bat_namep = name;
2346
2347         return lst_ioctl(LSTIO_BATCH_LIST, &args, sizeof(args));
2348 }
2349
2350 int
2351 lst_info_batch_ioctl(char *batch, int test, int server,
2352                      lstcon_test_batch_ent_t *entp, int *idxp,
2353                      int *ndentp, lstcon_node_ent_t *dentsp)
2354 {
2355         lstio_batch_info_args_t args = {0};
2356
2357         args.lstio_bat_key     = session_key;
2358         args.lstio_bat_nmlen   = strlen(batch);
2359         args.lstio_bat_namep   = batch;
2360         args.lstio_bat_server  = server;
2361         args.lstio_bat_testidx = test;
2362         args.lstio_bat_entp    = entp;
2363         args.lstio_bat_idxp    = idxp;
2364         args.lstio_bat_ndentp  = ndentp;
2365         args.lstio_bat_dentsp  = dentsp;
2366
2367         return lst_ioctl(LSTIO_BATCH_INFO, &args, sizeof(args));
2368 }
2369
2370 int
2371 lst_list_batch_all(void)
2372 {
2373         char name[LST_NAME_SIZE];
2374         int  rc;
2375         int  i;
2376
2377         for (i = 0; ; i++) {
2378                 rc = lst_list_batch_ioctl(LST_NAME_SIZE, name, i);
2379                 if (rc == 0) {
2380                         fprintf(stdout, "%d) %s\n", i + 1, name);
2381                         continue;
2382                 }
2383
2384                 if (errno == ENOENT)
2385                         break;
2386
2387                 lst_print_error("batch", "Failed to list batch: %s\n",
2388                                 strerror(errno));
2389                 return rc;
2390         }
2391
2392         fprintf(stdout, "Total %d batches\n", i);
2393
2394         return 0;
2395 }
2396
2397 int
2398 lst_list_tsb_nodes(char *batch, int test, int server,
2399                    int count, int active, int invalid)
2400 {
2401         lstcon_node_ent_t *dents;
2402         int                index = 0;
2403         int                rc;
2404         int                c;
2405         int                i;
2406
2407         if (count == 0)
2408                 return 0;
2409
2410         /* verbose list, show nodes in batch or test */
2411         dents = malloc(count * sizeof(lstcon_node_ent_t));
2412         if (dents == NULL) {
2413                 fprintf(stdout, "Can't allocate memory\n");
2414                 return -1;
2415         }
2416
2417         rc = lst_info_batch_ioctl(batch, test, server,
2418                                   NULL, &index, &count, dents);
2419         if (rc != 0) {
2420                 free(dents);
2421                 lst_print_error((test > 0) ? "test" : "batch",
2422                                 (test > 0) ? "Failed to query test: %s\n" :
2423                                              "Failed to query batch: %s\n",
2424                                 strerror(errno));
2425                 return -1;
2426         }
2427
2428         for (i = 0, c = 0; i < count; i++) {
2429                 if ((!active  && dents[i].nde_state == LST_NODE_ACTIVE) ||
2430                     (!invalid && (dents[i].nde_state == LST_NODE_BUSY  ||
2431                                   dents[i].nde_state == LST_NODE_DOWN  ||
2432                                   dents[i].nde_state == LST_NODE_UNKNOWN)))
2433                         continue;
2434
2435                 fprintf(stdout, "\t%s: %s\n",
2436                         libcfs_id2str(dents[i].nde_id),
2437                         lst_node_state2str(dents[i].nde_state));
2438                 c++;
2439         }
2440
2441         fprintf(stdout, "Total %d nodes\n", c);
2442         free(dents);
2443
2444         return 0;
2445 }
2446
2447 int
2448 jt_lst_list_batch(int argc, char **argv)
2449 {
2450         lstcon_test_batch_ent_t ent;
2451         char                *batch   = NULL;
2452         int                  optidx  = 0;
2453         int                  verbose = 0; /* list nodes in batch or test */
2454         int                  invalid = 0;
2455         int                  active  = 0;
2456         int                  server  = 0;
2457         int                  ntest   = 0;
2458         int                  test    = 0;
2459         int                  c       = 0;
2460         int                  rc;
2461
2462         static struct option list_batch_opts[] =
2463         {
2464                 {"test",    required_argument, 0, 't' },
2465                 {"invalid", no_argument,       0, 'i' },
2466                 {"active",  no_argument,       0, 'a' },
2467                 {"all",     no_argument,       0, 'l' },
2468                 {"server",  no_argument,       0, 's' },
2469                 {0,         0,                 0,  0  }
2470         };
2471
2472         if (session_key == 0) {
2473                 fprintf(stderr,
2474                         "Can't find env LST_SESSION or value is not valid\n");
2475                 return -1;
2476         }
2477
2478         while (1) {
2479                 c = getopt_long(argc, argv, "ailst:",
2480                                 list_batch_opts, &optidx);
2481
2482                 if (c == -1)
2483                         break;
2484
2485                 switch (c) {
2486                 case 'a':
2487                         verbose = active = 1;
2488                         break;
2489                 case 'i':
2490                         verbose = invalid = 1;
2491                         break;
2492                 case 'l':
2493                         verbose = active = invalid = 1;
2494                         break;
2495                 case 's':
2496                         server = 1;
2497                         break;
2498                 case 't':
2499                         test = atoi(optarg);
2500                         ntest = 1;
2501                         break;
2502                 default:
2503                         lst_print_usage(argv[0]);
2504                         return -1;
2505                 }
2506         }
2507
2508         if (optind == argc) {
2509                 /* list all batches */
2510                 rc = lst_list_batch_all();
2511                 return rc;
2512         }
2513
2514         if (ntest == 1 && test <= 0) {
2515                 fprintf(stderr, "Invalid test id, test id starts from 1\n");
2516                 return -1;
2517         }
2518
2519         if (optind != argc - 1) {
2520                 lst_print_usage(argv[0]);
2521                 return -1;
2522         }
2523
2524         batch = argv[optind];
2525
2526 loop:
2527         /* show detail of specified batch or test */
2528         rc = lst_info_batch_ioctl(batch, test, server,
2529                                   &ent, NULL, NULL, NULL);
2530         if (rc != 0) {
2531                 lst_print_error((test > 0) ? "test" : "batch",
2532                                 (test > 0) ? "Failed to query test: %s\n" :
2533                                              "Failed to query batch: %s\n",
2534                                 strerror(errno));
2535                 return -1;
2536         }
2537
2538         if (verbose) {
2539                 /* list nodes in test or batch */
2540                 rc = lst_list_tsb_nodes(batch, test, server,
2541                                         server ? ent.tbe_srv_nle.nle_nnode :
2542                                                  ent.tbe_cli_nle.nle_nnode,
2543                                         active, invalid);
2544                 return rc;
2545         }
2546
2547         /* only show number of hosts in batch or test */
2548         if (test == 0) {
2549                 fprintf(stdout, "Batch: %s Tests: %d State: %d\n",
2550                         batch, ent.u.tbe_batch.bae_ntest,
2551                         ent.u.tbe_batch.bae_state);
2552                 ntest = ent.u.tbe_batch.bae_ntest;
2553                 test = 1; /* starting from test 1 */
2554
2555         } else {
2556                 fprintf(stdout,
2557                         "\tTest %d(%s) (loop: %d, concurrency: %d)\n",
2558                         test, lst_test_type2name(ent.u.tbe_test.tse_type),
2559                         ent.u.tbe_test.tse_loop,
2560                         ent.u.tbe_test.tse_concur);
2561                 ntest --;
2562                 test ++;
2563         }
2564
2565         fprintf(stdout, LST_NODES_TITLE);
2566         fprintf(stdout, "client\t%d\t%d\t%d\t%d\t%d\n"
2567                         "server\t%d\t%d\t%d\t%d\t%d\n",
2568                 ent.tbe_cli_nle.nle_nactive,
2569                 ent.tbe_cli_nle.nle_nbusy,
2570                 ent.tbe_cli_nle.nle_ndown,
2571                 ent.tbe_cli_nle.nle_nunknown,
2572                 ent.tbe_cli_nle.nle_nnode,
2573                 ent.tbe_srv_nle.nle_nactive,
2574                 ent.tbe_srv_nle.nle_nbusy,
2575                 ent.tbe_srv_nle.nle_ndown,
2576                 ent.tbe_srv_nle.nle_nunknown,
2577                 ent.tbe_srv_nle.nle_nnode);
2578
2579         if (ntest != 0)
2580                 goto loop;
2581
2582         return 0;
2583 }
2584
2585 int
2586 lst_query_batch_ioctl(char *batch, int test, int server,
2587                       int timeout, cfs_list_t *head)
2588 {
2589         lstio_batch_query_args_t args = {0};
2590
2591         args.lstio_bat_key     = session_key;
2592         args.lstio_bat_testidx = test;
2593         args.lstio_bat_client  = !(server);
2594         args.lstio_bat_timeout = timeout;
2595         args.lstio_bat_nmlen   = strlen(batch);
2596         args.lstio_bat_namep   = batch;
2597         args.lstio_bat_resultp = head;
2598
2599         return lst_ioctl(LSTIO_BATCH_QUERY, &args, sizeof(args));
2600 }
2601
2602 void
2603 lst_print_tsb_verbose(cfs_list_t *head,
2604                       int active, int idle, int error)
2605 {
2606         lstcon_rpc_ent_t *ent;
2607
2608         cfs_list_for_each_entry_typed(ent, head, lstcon_rpc_ent_t, rpe_link) {
2609                 if (ent->rpe_priv[0] == 0 && active)
2610                         continue;
2611
2612                 if (ent->rpe_priv[0] != 0 && idle)
2613                         continue;
2614
2615                 if (ent->rpe_fwk_errno == 0 && error)
2616                         continue;
2617
2618                 fprintf(stdout, "%s [%s]: %s\n",
2619                         libcfs_id2str(ent->rpe_peer),
2620                         lst_node_state2str(ent->rpe_state),
2621                         ent->rpe_rpc_errno != 0 ?
2622                                 strerror(ent->rpe_rpc_errno) :
2623                                 (ent->rpe_priv[0] > 0 ? "Running" : "Idle"));
2624         }
2625 }
2626
2627 int
2628 jt_lst_query_batch(int argc, char **argv)
2629 {
2630         lstcon_test_batch_ent_t ent;
2631         cfs_list_t              head;
2632         char                   *batch   = NULL;
2633         time_t                  last    = 0;
2634         int                     optidx  = 0;
2635         int                     verbose = 0;
2636         int                     server  = 0;
2637         int                     timeout = 5; /* default 5 seconds */
2638         int                     delay   = 5; /* default 5 seconds */
2639         int                     loop    = 1; /* default 1 loop */
2640         int                     active  = 0;
2641         int                     error   = 0;
2642         int                     idle    = 0;
2643         int                     count   = 0;
2644         int                     test    = 0;
2645         int                     rc      = 0;
2646         int                     c       = 0;
2647         int                     i;
2648
2649         static struct option query_batch_opts[] =
2650         {
2651                 {"timeout", required_argument, 0, 'o' },
2652                 {"delay",   required_argument, 0, 'd' },
2653                 {"loop",    required_argument, 0, 'c' },
2654                 {"test",    required_argument, 0, 't' },
2655                 {"server",  no_argument,       0, 's' },
2656                 {"active",  no_argument,       0, 'a' },
2657                 {"idle",    no_argument,       0, 'i' },
2658                 {"error",   no_argument,       0, 'e' },
2659                 {"all",     no_argument,       0, 'l' },
2660                 {0,         0,                 0,  0  }
2661         };
2662
2663         if (session_key == 0) {
2664                 fprintf(stderr,
2665                         "Can't find env LST_SESSION or value is not valid\n");
2666                 return -1;
2667         }
2668
2669         while (1) {
2670                 c = getopt_long(argc, argv, "o:d:c:t:saiel",
2671                                 query_batch_opts, &optidx);
2672
2673                 /* Detect the end of the options. */
2674                 if (c == -1)
2675                         break;
2676
2677                 switch (c) {
2678                 case 'o':
2679                         timeout = atoi(optarg);
2680                         break;
2681                 case 'd':
2682                         delay = atoi(optarg);
2683                         break;
2684                 case 'c':
2685                         loop = atoi(optarg);
2686                         break;
2687                 case 't':
2688                         test = atoi(optarg);
2689                         break;
2690                 case 's':
2691                         server = 1;
2692                         break;
2693                 case 'a':
2694                         active = verbose = 1;
2695                         break;
2696                 case 'i':
2697                         idle = verbose = 1;
2698                         break;
2699                 case 'e':
2700                         error = verbose = 1;
2701                         break;
2702                 case 'l':
2703                         verbose = 1;
2704                         break;
2705                 default:
2706                         lst_print_usage(argv[0]);
2707                         return -1;
2708                 }
2709         }
2710
2711         if (test < 0 || timeout <= 0 || delay <= 0 || loop <= 0) {
2712                 lst_print_usage(argv[0]);
2713                 return -1;
2714         }
2715
2716         if (optind == argc) {
2717                 batch = LST_DEFAULT_BATCH;
2718
2719         } else if (optind == argc - 1) {
2720                 batch = argv[optind];
2721
2722         } else {
2723                 lst_print_usage(argv[0]);
2724                 return -1;
2725         }
2726
2727
2728         CFS_INIT_LIST_HEAD(&head);
2729
2730         if (verbose) {
2731                 rc = lst_info_batch_ioctl(batch, test, server,
2732                                           &ent, NULL, NULL, NULL);
2733                 if (rc != 0) {
2734                         fprintf(stderr, "Failed to query %s [%d]: %s\n",
2735                                 batch, test, strerror(errno));
2736                         return -1;
2737                 }
2738
2739                 count = server ? ent.tbe_srv_nle.nle_nnode :
2740                                  ent.tbe_cli_nle.nle_nnode;
2741                 if (count == 0) {
2742                         fprintf(stdout, "Batch or test is empty\n");
2743                         return 0;
2744                 }
2745         }
2746
2747         rc = lst_alloc_rpcent(&head, count, 0);
2748         if (rc != 0) {
2749                 fprintf(stderr, "Out of memory\n");
2750                 return rc;
2751         }
2752
2753         for (i = 0; i < loop; i++) {
2754                 time_t  now = time(NULL);
2755
2756                 if (now - last < delay) {
2757                         sleep(delay - now + last);
2758                         time(&now);
2759                 }
2760
2761                 last = now;
2762
2763                 rc = lst_query_batch_ioctl(batch, test,
2764                                            server, timeout, &head);
2765                 if (rc == -1) {
2766                         fprintf(stderr, "Failed to query batch: %s\n",
2767                                 strerror(errno));
2768                         break;
2769                 }
2770
2771                 if (verbose) {
2772                         /* Verbose mode */
2773                         lst_print_tsb_verbose(&head, active, idle, error);
2774                         continue;
2775                 }
2776
2777                 fprintf(stdout, "%s [%d] ", batch, test);
2778
2779                 if (lstcon_rpc_stat_failure(&trans_stat, 0) != 0) {
2780                         fprintf(stdout, "%d of %d nodes are unknown, ",
2781                                 lstcon_rpc_stat_failure(&trans_stat, 0),
2782                                 lstcon_rpc_stat_total(&trans_stat, 0));
2783                 }
2784
2785                 if (lstcon_rpc_stat_failure(&trans_stat, 0) == 0 &&
2786                     lstcon_tsbqry_stat_run(&trans_stat, 0)  == 0  &&
2787                     lstcon_tsbqry_stat_failure(&trans_stat, 0) == 0) {
2788                         fprintf(stdout, "is stopped\n");
2789                         continue;
2790                 }
2791
2792                 if (lstcon_rpc_stat_failure(&trans_stat, 0) == 0 &&
2793                     lstcon_tsbqry_stat_idle(&trans_stat, 0) == 0 &&
2794                     lstcon_tsbqry_stat_failure(&trans_stat, 0) == 0) {
2795                         fprintf(stdout, "is running\n");
2796                         continue;
2797                 }
2798
2799                 fprintf(stdout, "stopped: %d , running: %d, failed: %d\n",
2800                                 lstcon_tsbqry_stat_idle(&trans_stat, 0),
2801                                 lstcon_tsbqry_stat_run(&trans_stat, 0),
2802                                 lstcon_tsbqry_stat_failure(&trans_stat, 0));
2803         }
2804
2805         lst_free_rpcent(&head);
2806
2807         return rc;
2808 }
2809
2810 int
2811 lst_parse_distribute(char *dstr, int *dist, int *span)
2812 {
2813         *dist = atoi(dstr);
2814         if (*dist <= 0)
2815                 return -1;
2816
2817         dstr = strchr(dstr, ':');
2818         if (dstr == NULL)
2819                 return -1;
2820
2821         *span = atoi(dstr + 1);
2822         if (*span <= 0)
2823                 return -1;
2824
2825         return 0;
2826 }
2827
2828 int
2829 lst_get_bulk_param(int argc, char **argv, lst_test_bulk_param_t *bulk)
2830 {
2831         char   *tok = NULL;
2832         char   *end = NULL;
2833         int     rc  = 0;
2834         int     i   = 0;
2835
2836         bulk->blk_size  = 4096;
2837         bulk->blk_opc   = LST_BRW_READ;
2838         bulk->blk_flags = LST_BRW_CHECK_NONE;
2839
2840         while (i < argc) {
2841                 if (strcasestr(argv[i], "check=") == argv[i] ||
2842                     strcasestr(argv[i], "c=") == argv[i]) {
2843                         tok = strchr(argv[i], '=') + 1;
2844
2845                         if (strcasecmp(tok, "full") == 0) {
2846                                 bulk->blk_flags = LST_BRW_CHECK_FULL;
2847                         } else if (strcasecmp(tok, "simple") == 0) {
2848                                 bulk->blk_flags = LST_BRW_CHECK_SIMPLE;
2849                         } else {
2850                                 fprintf(stderr, "Unknow flag %s\n", tok);
2851                                 return -1;
2852                         }
2853
2854                 } else if (strcasestr(argv[i], "size=") == argv[i] ||
2855                          strcasestr(argv[i], "s=") == argv[i]) {
2856                         tok = strchr(argv[i], '=') + 1;
2857
2858                         bulk->blk_size = strtol(tok, &end, 0);
2859                         if (bulk->blk_size <= 0) {
2860                                 fprintf(stderr, "Invalid size %s\n", tok);
2861                                 return -1;
2862                         }
2863
2864                         if (end == NULL)
2865                                 return 0;
2866
2867                         if (*end == 'k' || *end == 'K')
2868                                 bulk->blk_size *= 1024;
2869                         else if (*end == 'm' || *end == 'M')
2870                                 bulk->blk_size *= 1024 * 1024;
2871
2872                         if (bulk->blk_size > CFS_PAGE_SIZE * LNET_MAX_IOV) {
2873                                 fprintf(stderr, "Size exceed limitation: %d bytes\n",
2874                                         bulk->blk_size);
2875                                 return -1;
2876                         }
2877
2878                 } else if (strcasecmp(argv[i], "read") == 0 ||
2879                            strcasecmp(argv[i], "r") == 0) {
2880                         bulk->blk_opc = LST_BRW_READ;
2881
2882                 } else if (strcasecmp(argv[i], "write") == 0 ||
2883                            strcasecmp(argv[i], "w") == 0) {
2884                         bulk->blk_opc = LST_BRW_WRITE;
2885
2886                 } else {
2887                         fprintf(stderr, "Unknow parameter: %s\n", argv[i]);
2888                         return -1;
2889                 }
2890
2891                 i++;
2892         }
2893
2894         return rc;
2895 }
2896
2897 int
2898 lst_get_test_param(char *test, int argc, char **argv, void **param, int *plen)
2899 {
2900         lst_test_bulk_param_t *bulk = NULL;
2901         int                    type;
2902
2903         type = lst_test_name2type(test);
2904         if (type < 0) {
2905                 fprintf(stderr, "Unknow test name %s\n", test);
2906                 return -1;
2907         }
2908
2909         switch (type) {
2910         case LST_TEST_PING:
2911                 break;
2912
2913         case LST_TEST_BULK:
2914                 bulk = malloc(sizeof(*bulk));
2915                 if (bulk == NULL) {
2916                         fprintf(stderr, "Out of memory\n");
2917                         return -1;
2918                 }
2919
2920                 memset(bulk, 0, sizeof(*bulk));
2921
2922                 if (lst_get_bulk_param(argc, argv, bulk) != 0) {
2923                         free(bulk);
2924                         return -1;
2925                 }
2926
2927                 *param = bulk;
2928                 *plen  = sizeof(*bulk);
2929
2930                 break;
2931
2932         default:
2933                 break;
2934         }
2935
2936         /* TODO: parse more parameter */
2937         return type;
2938 }
2939
2940 int
2941 lst_add_test_ioctl(char *batch, int type, int loop, int concur,
2942                    int dist, int span, char *sgrp, char *dgrp,
2943                    void *param, int plen, int *retp, cfs_list_t *resultp)
2944 {
2945         lstio_test_args_t args = {0};
2946
2947         args.lstio_tes_key        = session_key;
2948         args.lstio_tes_bat_nmlen  = strlen(batch);
2949         args.lstio_tes_bat_name   = batch;
2950         args.lstio_tes_type       = type;
2951         args.lstio_tes_oneside    = 0;
2952         args.lstio_tes_loop       = loop;
2953         args.lstio_tes_concur     = concur;
2954         args.lstio_tes_dist       = dist;
2955         args.lstio_tes_span       = span;
2956         args.lstio_tes_sgrp_nmlen = strlen(sgrp);
2957         args.lstio_tes_sgrp_name  = sgrp;
2958         args.lstio_tes_dgrp_nmlen = strlen(dgrp);
2959         args.lstio_tes_dgrp_name  = dgrp;
2960         args.lstio_tes_param_len  = plen;
2961         args.lstio_tes_param      = param;
2962         args.lstio_tes_retp       = retp;
2963         args.lstio_tes_resultp    = resultp;
2964
2965         return lst_ioctl(LSTIO_TEST_ADD, &args, sizeof(args));
2966 }
2967
2968 int
2969 jt_lst_add_test(int argc, char **argv)
2970 {
2971         cfs_list_t    head;
2972         char         *batch  = NULL;
2973         char         *test   = NULL;
2974         char         *dstr   = NULL;
2975         char         *from   = NULL;
2976         char         *to     = NULL;
2977         void         *param  = NULL;
2978         int           optidx = 0;
2979         int           concur = 1;
2980         int           loop   = -1;
2981         int           dist   = 1;
2982         int           span   = 1;
2983         int           plen   = 0;
2984         int           fcount = 0;
2985         int           tcount = 0;
2986         int           ret    = 0;
2987         int           type;
2988         int           rc;
2989         int           c;
2990
2991         static struct option add_test_opts[] =
2992         {
2993                 {"batch",       required_argument, 0, 'b' },
2994                 {"concurrency", required_argument, 0, 'c' },
2995                 {"distribute",  required_argument, 0, 'd' },
2996                 {"from",        required_argument, 0, 'f' },
2997                 {"to",          required_argument, 0, 't' },
2998                 {"loop",        required_argument, 0, 'l' },
2999                 {0,             0,                 0,  0  }
3000         };
3001
3002         if (session_key == 0) {
3003                 fprintf(stderr,
3004                         "Can't find env LST_SESSION or value is not valid\n");
3005                 return -1;
3006         }
3007
3008         while (1) {
3009                 c = getopt_long(argc, argv, "b:c:d:f:l:t:",
3010                                 add_test_opts, &optidx);
3011
3012                 /* Detect the end of the options. */
3013                 if (c == -1)
3014                         break;
3015
3016                 switch (c) {
3017                 case 'b':
3018                         batch = optarg;
3019                         break;
3020                 case 'c':
3021                         concur = atoi(optarg);
3022                         break;
3023                 case 'd':
3024                         dstr = optarg;
3025                         break;
3026                 case 'f':
3027                         from = optarg;
3028                         break;
3029                 case 'l':
3030                         loop = atoi(optarg);
3031                         break;
3032                 case 't':
3033                         to = optarg;
3034                         break;
3035                 default:
3036                         lst_print_usage(argv[0]);
3037                         return -1;
3038                 }
3039         }
3040
3041         if (optind == argc || from == NULL || to == NULL) {
3042                 lst_print_usage(argv[0]);
3043                 return -1;
3044         }
3045
3046         if (concur <= 0 || concur > LST_MAX_CONCUR) {
3047                 fprintf(stderr, "Invalid concurrency of test: %d\n", concur);
3048                 return -1;
3049         }
3050
3051         if (batch == NULL)
3052                 batch = LST_DEFAULT_BATCH;
3053
3054         if (dstr != NULL) {
3055                 rc = lst_parse_distribute(dstr, &dist, &span);
3056                 if (rc != 0) {
3057                         fprintf(stderr, "Invalid distribution: %s\n", dstr);
3058                         return -1;
3059                 }
3060         }
3061
3062         test = argv[optind++];
3063
3064         argc -= optind;
3065         argv += optind;
3066
3067         type = lst_get_test_param(test, argc, argv, &param, &plen);
3068         if (type < 0) {
3069                 fprintf(stderr, "Failed to add test (%s)\n", test);
3070                 return -1;
3071         }
3072
3073         CFS_INIT_LIST_HEAD(&head);
3074
3075         rc = lst_get_node_count(LST_OPC_GROUP, from, &fcount, NULL);
3076         if (rc != 0) {
3077                 fprintf(stderr, "Can't get count of nodes from %s: %s\n",
3078                         from, strerror(errno));
3079                 goto out;
3080         }
3081
3082         rc = lst_get_node_count(LST_OPC_GROUP, to, &tcount, NULL);
3083         if (rc != 0) {
3084                 fprintf(stderr, "Can't get count of nodes from %s: %s\n",
3085                         to, strerror(errno));
3086                 goto out;
3087         }
3088
3089         rc = lst_alloc_rpcent(&head, fcount > tcount ? fcount : tcount, 0);
3090         if (rc != 0) {
3091                 fprintf(stderr, "Out of memory\n");
3092                 goto out;
3093         }
3094
3095         rc = lst_add_test_ioctl(batch, type, loop, concur,
3096                                 dist, span, from, to, param, plen, &ret, &head);
3097
3098         if (rc == 0) {
3099                 fprintf(stdout, "Test was added successfully\n");
3100                 if (ret != 0) {
3101                         fprintf(stdout, "Server group contains userland test "
3102                                 "nodes, old version of tcplnd can't accept "
3103                                 "connection request\n");
3104                 }
3105
3106                 goto out;
3107         }
3108
3109         if (rc == -1) {
3110                 lst_print_error("test", "Failed to add test: %s\n",
3111                                 strerror(errno));
3112                 goto out;
3113         }
3114
3115         lst_print_transerr(&head, "add test");
3116 out:
3117         lst_free_rpcent(&head);
3118
3119         if (param != NULL)
3120                 free(param);
3121
3122         return rc;
3123 }
3124
3125 static command_t lst_cmdlist[] = {
3126         {"new_session",         jt_lst_new_session,     NULL,
3127          "Usage: lst new_session [--timeout TIME] [--force] [NAME]"                     },
3128         {"end_session",         jt_lst_end_session,     NULL,
3129          "Usage: lst end_session"                                                       },
3130         {"show_session",        jt_lst_show_session,    NULL,
3131          "Usage: lst show_session"                                                      },
3132         {"ping",                jt_lst_ping ,           NULL,
3133          "Usage: lst ping  [--group NAME] [--batch NAME] [--session] [--nodes IDS]"     },
3134         {"add_group",           jt_lst_add_group,       NULL,
3135          "Usage: lst group NAME IDs [IDs]..."                                           },
3136         {"del_group",           jt_lst_del_group,       NULL,
3137          "Usage: lst del_group NAME"                                                    },
3138         {"update_group",        jt_lst_update_group,    NULL,
3139          "Usage: lst update_group NAME [--clean] [--refresh] [--remove IDs]"            },
3140         {"list_group",          jt_lst_list_group,      NULL,
3141           "Usage: lst list_group [--active] [--busy] [--down] [--unknown] GROUP ..."    },
3142         {"stat",                jt_lst_stat,            NULL,
3143          "Usage: lst stat [--bw] [--rate] [--read] [--write] [--max] [--min] [--avg] "
3144          " [--timeout #] [--delay #] [--count #] GROUP [GROUP]"                         },
3145         {"show_error",          jt_lst_show_error,      NULL,
3146          "Usage: lst show_error NAME | IDS ..."                                         },
3147         {"add_batch",           jt_lst_add_batch,       NULL,
3148          "Usage: lst add_batch NAME"                                                    },
3149         {"run",                 jt_lst_start_batch,     NULL,
3150          "Usage: lst run [--timeout TIME] [NAME]"                                       },
3151         {"stop",                jt_lst_stop_batch,      NULL,
3152          "Usage: lst stop [--force] BATCH_NAME"                                         },
3153         {"list_batch",          jt_lst_list_batch,      NULL,
3154          "Usage: lst list_batch NAME [--test ID] [--server]"                            },
3155         {"query",               jt_lst_query_batch,     NULL,
3156          "Usage: lst query [--test ID] [--server] [--timeout TIME] NAME"                },
3157         {"add_test",            jt_lst_add_test,        NULL,
3158          "Usage: lst add_test [--batch BATCH] [--loop #] [--concurrency #] "
3159          " [--distribute #:#] [--from GROUP] [--to GROUP] TEST..."                      },
3160         {"help",                Parser_help,            0,     "help"                   },
3161         {0,                     0,                      0,      NULL                    }
3162 };
3163
3164 int
3165 lst_initialize(void)
3166 {
3167         char   *key;
3168
3169         key = getenv("LST_SESSION");
3170
3171         if (key == NULL) {
3172                 session_key = 0;
3173                 return 0;
3174         }
3175
3176         session_key = atoi(key);
3177
3178         return 0;
3179 }
3180
3181 int
3182 main(int argc, char **argv)
3183 {
3184         int rc = 0;
3185
3186         setlinebuf(stdout);
3187
3188         rc = libcfs_arch_init();
3189         if (rc < 0)
3190                 return rc;
3191
3192         rc = lst_initialize();
3193         if (rc < 0)
3194                 goto errorout;
3195
3196         rc = ptl_initialize(argc, argv);
3197         if (rc < 0)
3198                 goto errorout;
3199         
3200         Parser_init("lst > ", lst_cmdlist);
3201
3202         if (argc != 1)  {
3203                 rc = Parser_execarg(argc - 1, argv + 1, lst_cmdlist);
3204                 goto errorout;
3205         }
3206
3207         Parser_commands();
3208
3209 errorout:
3210         libcfs_arch_cleanup();
3211         return rc;
3212 }