I have worked for quite some time with SAN-OS, which later became the basis for NX-OS. Being the tinkerer that I am, I really like to get inside things and figure how they work. My past experience with UNIX based OS’s made it ideal for me to be able to further explore the innards of NX-OS. During this discovery, I found multiple security vulnerabilities, which were reported to Cisco via their PSIRT process and has hopefully made NX-OS a more secure and better product. The angle of this post is more from an engineering perspective, not security. Having access to the NX-OS filesystem is not really a security risk, but it is certainly interesting. There are many ways to achieve this. Like with IOS-XR, it is possible to gain access to the “shell” of the NX-OS system via its normal CLI interface, however we will go about it in a much more straight forward approach.
In this tutorial I am working with CentOS 5.5, but really just about any version of linux should work fine for these tasks.
NX-OS is based on MontaVista Linux (HardHat Linux). Cisco distributes the kickstart and system binary files which are used to run NX-OS. Kickstart is actually a composite file that contains multiple different sections and is used to get the system up and running. The system binary contains the majority of the actual daemons and processes that run the system. You will obviously have to have access to NX-OS images to do this. I have used SAN-OS images in the past as well. Below we are working with the latest release of the Nexus 7000 code:
1 2 3 4 5 6 |
<span style="font-family: 'courier new', courier;">[root@cluebox nx-os]# ls -al total 173412 drwxr-xr-x 2 root root 4096 Mar 24 00:48 . drwxrwxr-x 7 95528 named 4096 Mar 24 01:11 .. -rw-r--r-- 1 root root 146701191 Mar 24 00:48 n7000-s1-dk9.5.1.3.bin -rw-r--r-- 1 root root 30674944 Mar 24 00:47 n7000-s1-kickstart.5.1.3.bin</span> |
The kickstart image contains a header of variable length. The header maps out a lot of data, notablythings like the version, image offset, image type, etc. The kickstart image is a NBI image.
1 2 |
<span style="font-family: 'courier new', courier;">[root@cluebox nx-os]# file n7000-s1-kickstart.5.1.3.bin n7000-s1-kickstart.5.1.3.bin: Netboot image, mode 2</span> |
Ok, so we have established this is a standard NBI mode 2 file (Network Bootable Image). This is a standard and you can read about NBI images here Draft Net Boot Image Proposal 0.3
We can take a look at what segments we have in our kickstart file:
So we have six basic segments to this file. Segment 7 doesn’t really count, as its Image Length is 0, and we can’t have that now can we :). So we explode these out into our filesystem:
nbidir'...
segment1'...
segment3'...
segment5'...
You can safely ignore the error at the end, of course it can’t read the data, if its 0 in size that’s rather impossible now isn’t it? Note that when you do this, what was called “Segment 1” in the disnbi output gets saved as segment0, and what was called “Segment 2” gets saved as segment1, and so forth. The actual nbi header gets saved as nbidir. It contains all the information about each file such as the Load Address, Image Length, Memory Length, Position, and Vendor tag. So for example, looking at the nbidir file:
1 2 3 4 5 6 7 |
<span style="font-family: 'courier new', courier;"> nbidir: directory segment0: "first" segment segment1: kernel parameters segment2: floppy boot sector segment3: setup segment segment4: kernel segment5: ramdisk (optional)</span> |
So we can get back to our original kernel as well as initrd with the following:
[root@cluebox kickstart]# cat segment[234] > vmlinuz
So we are making progress. Hopefully this doesn’t seem to complex, I can imagine coming from the network side of things, all this linux jargon can be mind blowing.are getting close to some cool stuff though.
[root@cluebox kickstart]# file segment5
This is basically an initrd image (Initial Ramdisk) and its compressed, we can rename it correctly and take care of it:
[root@cluebox kickstart]# mv segment5 initrd.gz
Ok, so we are inside the kickstart filesystem!!!! The binaries are executable:
[root@cluebox kickstart-filesystem]# cd bin
-Acdtrux' options
You may run into things you can’t run, because you have to set your libraries up properly with LD_LIBRARY_PATH, but basically you can do some really cool stuff. You can even use the NBI tools to “repackage” your own NX-OS with modifications :).
So there is much to look at! This was just a splash dive into the kickstart, there is still much to discuss on how it actually boots, switches to the system image, and the role it plays. The “system” image is handled a bit differently than the kickstart. We will explore that in our next segment and in fact use some of the tools in the kickstart image to allow us to do this.
Pingback: Technology Short Take #12: Networking Edition - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers