forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TACACS+] Add Bash TACACS+ plugin for per-command authorization. (son…
…ic-net#8715) This pull request add a bash plugin for TACACS+ per-command authorization #### Why I did it 1. To support TACACS per command authorization, we check user command before execute it. 2. Fix libtacsupport.so can't parse tacplus_nss.conf correctly issue: Support debug=on setting. Support put server address and secret in same row. 3. Fix the parse_config_file method not reset server list before parse config file issue. #### How I did it The bash plugin will be called before every user command, and check user command with remote TACACS+ server for per-command authorization. #### How to verify it UT with CUnit cover all code in this plugin. Also pass all current UT. #### Which release branch to backport (provide reason below if selected) N/A #### Description for the changelog Add Bash TACACS+ plugin. #### A picture of a cute animal (not mandatory but encouraged)
- Loading branch information
Showing
20 changed files
with
1,260 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1170,3 +1170,33 @@ Microsoft is offering you a license to use the following components, to the exte | |
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
5. src/tacacs/bash/bash_tacplus based on https://github.com/daveolson53/tacplus-auth project using GNU GENERAL PUBLIC LICENSE Version 2 | ||
|
||
/* Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
* Upstream-Name: tacplus-auth | ||
* Source: https://github.com/daveolson53/tacplus-auth | ||
* | ||
* Files: * | ||
* Copyright: 2016 Cumulus Networks, Inc. All rights reserved., | ||
* 2010 Pawel Krawczyk <[email protected]> and Jeroen Nijhof <[email protected]>. | ||
* License: GPL-2+ | ||
* | ||
* License: GPL-2+ | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* . | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* . | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program; if not, write to the Free Software Foundation, Inc., | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* . | ||
* On Debian systems, the full copy of the GPL-2 license can be found in | ||
* /usr/share/common-licenses/GPL-2 | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
* | ||
!.gitignore | ||
!bash_tacplus/* | ||
nsm/* | ||
!nsm/Makefile | ||
!nsm/*.patch | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
########################################################################### | ||
## | ||
## File: ./Makefile.am | ||
## Versions: $Id: Makefile.am,v 1.0 2021/08/24 12:04:29 [email protected] Exp $ | ||
## Created: 2021/08/24 | ||
## | ||
########################################################################### | ||
|
||
ACLOCAL_AMFLAGS = -I config | ||
AUTOMAKE_OPTIONS = subdir-objects | ||
|
||
moduledir = @plugindir@ | ||
module_LTLIBRARIES = bash_tacplus.la | ||
bash_tacplus_la_SOURCES = bash_tacplus.h \ | ||
bash_tacplus.c | ||
bash_tacplus_la_CFLAGS = $(AM_CFLAGS) -I $(top_srcdir)/libtac/include | ||
bash_tacplus_la_LDFLAGS = -module -avoid-version | ||
|
||
EXTRA_DIST = bash_tacplus.spec | ||
|
||
MAINTAINERCLEANFILES = Makefile.in config.h.in configure aclocal.m4 \ | ||
config/config.guess config/config.sub config/depcomp \ | ||
config/install-sh config/ltmain.sh config/missing | ||
|
||
pkgconfigdir = $(libdir)/pkgconfig | ||
|
||
SUBDIRS = unittest |
Oops, something went wrong.