The klish is a framework for implementing a CISCO-like CLI on a UNIX systems. It is configurable by XML files.
https://src.libcode.org/download/klish/

Serj Kalichev cc624ef42c Redirect readers of CHANGES and ISSUES to the actual web pages 12 years ago
aux_scripts 2c3eccb050 Remove tcl support and internal lubheap 12 years ago
bin 601e395971 Remove libbfd and libintl configure checking 12 years ago
clish df92544a3b Remove pthread and rt 12 years ago
contrib 047d9f4146 Remove legacy test dir 12 years ago
konf 03b1dcb3e5 Comment for QNX6 12 years ago
lub 122e9ea8e1 Cleanup lub library 12 years ago
tinyrl 8d8fe690ca Fix possible segmentations when istream==NULL 12 years ago
tinyxml 6b1bd44739 Fix warnings in cpp code 13 years ago
xml-examples 99680e3c1e Cleanup xml-examples 12 years ago
CHANGES cc624ef42c Redirect readers of CHANGES and ISSUES to the actual web pages 12 years ago
ISSUES cc624ef42c Redirect readers of CHANGES and ISSUES to the actual web pages 12 years ago
LICENCE 1a9cf520ef Fix many warnings. 13 years ago
Makefile.am 047d9f4146 Remove legacy test dir 12 years ago
Makefile.in df92544a3b Remove pthread and rt 12 years ago
README c30fc7a7e8 The first klish tree. 13 years ago
aclocal.m4 2c3eccb050 Remove tcl support and internal lubheap 12 years ago
clish.xsd d55cca6f90 More help for STARTUP tag. 12 years ago
config.h.in df92544a3b Remove pthread and rt 12 years ago
configure df92544a3b Remove pthread and rt 12 years ago
configure.ac df92544a3b Remove pthread and rt 12 years ago
doxygen.config c30fc7a7e8 The first klish tree. 13 years ago

README

/**
\mainpage

\section abstract Abstract
A modular framework for implementing a CISCO-like CLI on a *NIX system.
Arbitary command menus and actions can be defined using XML files.
This software handles the user interaction, and forks the appropriate system
commands to perform any actions.

- \ref _licence_page
- \ref _changes_page
- \ref _issues_page

\section downloads Downloads
This project is hosted on
sourceforge. from where
the source-code can be downloaded.

\section background Background
The CISCO-like CLI has become a de-facto standard in the domain of network
devices. It is a much more restricted interface than traditional *NIX shells,
hence is simpler to use and inherently more secure. As more devices move to
using an embedded *NIX operating systems, a simple, scalable means of producing
such a CLI becomes valuable.

\section existing Existing Solutions

\subsection Libcli
Libcli
provides a similar facility but has the following main limitations:-

1) In order to add new commands a monolithic executable (which uses the
library) needs to be recompiled, after editing the source code to add the
newly required commands and actions.

2) libcli takes responsiblity for attaching to a socket (telnet-like). This
limits the usage of the CLI; difficult to use over SSH for example, similarly
cannot get the menus directly from an existing shell.

3) The implementation of the command actions is hard-linked into the monolithic
executable, this can cause licence concerns/issues when a commercial company
wishes to control proprietry software from within the CLI.

4) libcli takes responsiblity for the authentication of the user. This is
different from other "shells" which do not deal with authentication, but are
simply spawned as the required user.

\subsection GNU-zebra
Zebra
is a routing package, and comes with it's own integrated CLI, to handle its
configuration (VTYSH).

\section project CLISH Project
The project is written (mostly) in ANSI-C and provides two example executables
which can be used as a drop-in replacement for a more conventional "shell".

The software was initially developed as part of some internal work at 3Com and
due to the dependancy on 3rd party open-source packages, and it's self contained
nature, it is being released into the public domain.

It is designed to run on any *NIX system e.g. Linux, BSD, Cygwin and makes use
of the following other opensource packages (glibc,tinyxml,doxygen)

\subsection clish clish (pronounced see-lish)
This application is a standard UNIX shell replacement. The ACTION tags in the XML
specification are mapped to the system() call and hence will be interpreted as
a Bourne-shell script.

\subsection tclish tclish (pronounced tickle-ish)
This application is built if the TCL libraries are present on the build system.
The name of the executable produced will reflect the version of TCL used. e.g.
tclish8.4 will be generated if TCL8.4 is present on the system.

This application will spawn a TCL interpreter when started, and the contents of
the ACTION tags will be interpreted as TCL scripts within that interpreter for
the duration of the shell.

\subsection Features
The "clish" shell has the following features:-

- Provides CLI tree handling facilities
- Tree built from multiple XML encoded files. (uses tinyxml)
This means that XML configuration files can be be made part of
3rd party packages and simply installing them integrates
commands into the CLI.

- Access permissions are defined as part of the CLI tree definition; a CLI
node/branch may be limited to a specific *NIX group.

- Provides interface to user
- Handles auto-completion of commands
- Only appropriate commands for the current user's "group" will be
available.
- Provides parameter type verification facility
* Each parameter may be of a specific type, which the
framework will ensure is correctly entered by the user.
- Provides key-handling for the interface (uses tinyrl)
* Provides command line editing facilities
* up/down arrow keys
* [TAB] command completion
* [CTRL-A] move to start of command line
* [?] provides context sensitive help.

- Able to be launched non-interactively
- textual scripts can be written to drive the CLI

- Executes a specified CLI command by launching the appropriate
(as defined in the CLI tree) system command line to perform the
required action
- Only commands permitted for the current user are available.
- During execution the I/O streams are handed over to the new
program.
- Able to spawn a 3rd party shell, where necessary
This will take over control of the I/O channel until that
sub-shell exits.


"clish" makes use of multiple XML files to define it's behaviour these...

- Identify scope of the commands (global or specific view(s))

- Include access permissions. By default a command will be
accessible to all users, but the schema will provide
the ability to limit the command based on UNIX group membership.

- Includes help text for menus

- Includes parameter definitions (with types where appropriate)

- Includes prompt modifications (different views)

- Includes full command line which each leaf node should execute
to achieve result.

- Separate set of files for each localization (language) can be
provided and determined by the user logging in.

- "packages" can contribute files to define their facilities
within the CLI; this makes augmentation of the CLI as simple
as including/excluding a particular package.

\section example xml-example directory

\include README

Some of the example files are put here for reference:

\subsection global_xml global-command.xml
\include global-commands.xml

\subsection startup_xml startup.xml
\include startup.xml

\subsection types_xml types.xml
\include types.xml

\subsection debug_xml debug-view.xml
\include debug-view.xml

*/