Very handy way to force a Kernel Panic if you need to test the resilience of your Software/Systems.
# echo “1” > /proc/sys/kernel/sysrq
# echo “c” > /proc/sysrq-trigger
Very handy way to force a Kernel Panic if you need to test the resilience of your Software/Systems.
# echo “1” > /proc/sys/kernel/sysrq
# echo “c” > /proc/sysrq-trigger
Ok, so I lend one of my Servers to two of my colleagues in The States, that required to prepare some test for a customer. I always try to be nice and to stimulate sales across the organizations I help, so if they need a Server for a PoC and demo to a customer, they know they can count on me.
It is important to remark that the Servers I was using had two motherboards, with their CPU and RAM, and Dual Port SAS drives. We had those Servers so we can implement High Availability. The Dual Port SAS allow two different computers or IO controllers to access the same drive at the same time.
I work with Declustered RAID, DRAID, and ZFS.
The Server was a 4U90, so a 4U Server with 90 SAS3 spinning drives and 4 SSD. Drives are Dual Ported, and two Controllers (motherboard + CPU + RAM) have access simultaneously to the drives for HA.
After their tests my colleagues, returned me the Server, and I needed to use it and my surprise was when I tried to provision with ZFS and I encountered problems. Not much in the logs. Please note I was using only one node (or controller), and the other was not in use but they ask me to keep the OS and the data (in 2xMD drive). I shutdown the node A after the Engineers in San Jose powered the Server off, so only my node was working.
I checked:
cat /proc/mdstat
And that was the thing 8 MD Arrays where there.
[root@4u90-B ~]# cat /proc/mdstat Personalities : md2 : inactive sdba1[9](S) sdag1[7](S) sdaf1[3](S) 11720629248 blocks super 1.2 md1 : inactive sdax1[7](S) sdad1[5](S) sdac1[1](S) sdae1[9](S) 12056071168 blocks super 1.2 md0 : inactive sdat1[1](S) sdav1[9](S) sdau1[5](S) sdab1[7](S) sdaa1[3](S) 19534382080 blocks super 1.2 md4 : inactive sdbf1[9](S) sdbe1[5](S) sdbd1[1](S) sdal1[7](S) sdak1[3](S) 19534382080 blocks super 1.2 md5 : inactive sdam1[1](S) sdan1[5](S) sdao1[9](S) 11720629248 blocks super 1.2 md8 : inactive sdcq1[7](S) sdz1[2](S) 7813752832 blocks super 1.2 md7 : inactive sdbm1[7](S) sdar1[1](S) sdy1[9](S) sdx1[5](S) 15627505664 blocks super 1.2 md3 : inactive sdaj1[9](S) sdai1[5](S) sdah1[1](S) 11720629248 blocks super 1.2 md6 : inactive sdaq1[7](S) sdap1[3](S) sdr1[8](S) sdp1[0](S) 15627505664 blocks super 1.2
Ok. So I stop the Arrays
mdadm --stop /dev/md127
And then I zero the superblock:
mdadm --zero-superblock /dev/sdb1
After doing this for all I try to provision and… surprise! does not work. /dev/md127 has respawned like in the old times from Doom video game.
I check the mdmonitor service and even disable it.
systemctl disable mdmonitor
I repeat the process.
And /dev/md127 appears again, using another device.
At this point, just in case, I check the other controller, which should be powered off.
Ok, it was on. With different Ip, so it was not answering to ping, but I still had access to BMC//IPMI. After confirming with my colleagues that I can shutdown that node (they did not turn it on apparently) I launch the poweroff command, and repeat, same!.
I see that the poweroff command on the second Controller is doing a reboot, not poweroff. Is a Firmware issue I find. So I access to the Linux from the management tool and I launch the halt command that makes it not respond to the ping anymore.
I repeat the process, and still the ghost md array appears there, and blocks me from doing my zpool create.
The /etc/mdadm.conf file did not exist (by default is not created).
I try a more aggressive approach:
DRIVES=`cat /proc/partitions | grep 3907018584 | awk '{ print $4; }'` for DRIVE in $DRIVES; do echo "Trying /dev/${DRIVE}1"; mdadm --examine /dev/${DRIVE}1; done
Ok. And destruction time:
for DRIVE in $DRIVES; do echo "Trying /dev/${DRIVE}"; wipefs -a -f /dev/${DRIVE}; done for DRIVE in $DRIVES; do echo "Trying /dev/${DRIVE}1"; mdadm --zero-superblock /dev/${DRIVE}1; done
Apparently the system is clean, but still I cannot provision, and /dev/md127 respawns and reappears all the time.
After googling and not finding anything about this problem, and my colleagues no having clue about what is causing this, I just proceed with a simple solution, as I need the Server for my company completing the tests in the next 24 hours.
So I create the file /etc/mdadm.conf with this content:
[root@draid-08 ~]# cat /etc/mdadm.conf AUTO -all
After that I rebooted the Server and I saw the infamous /dev/md127 is not there and I’m able to provision.
I share the solution as it may help other people.
The most straightforward procedure would had been reinstalling clean the OS, but this operation is very slow when simulating a Virtual CD remotely, so it was worth fixing that as OS level, as I save one day delaying my work.
I illustrate this troubleshooting as it will be useful for some of you.
I requested to one of the members of my Team to compile and to install ZFS 7.9 to some of the Servers loaded with drives, that were running ZFS 7.4 older version.
Those systems were running RHEL7.4.
The compilation and install was fine, however the module was not able to load.
My Team member reported that: when trying to run “modprobe zfs“. It was giving the error:
modprobe: ERROR: could not insert 'zfs': Invalid argument
Also when trying to use a zpool command it gives the error:
Failed to initialize the libzfs library
That was only failing in one of the Servers, but not in the others.
My Engineer ran dmesg and found:
zfs: `' invalid for parameter `metaslab_debug_unload
He though it was a compilation error, but I knew that metaslab_debug_unload is an option parameter that you can set in /etc/zfs.conf
So I ran:
modprobe -v zfs
And that confirmed my suspicious, so I edited /etc/zfs.conf and commented the parameter and tried again. And it failed.
As I run modprobe -v zfs (verbose) it was returning me the verbose info, and so I saw that it was still trying to load those parameters so I knew it was reading those parameters from some file.
I could have grep all the files in the filesystem looking for the parameter failing in the verbose or find all the files in the system named zfs.conf. To me it looked inefficient as it would be slow and may not bring any result (as I didn’t know how exactly my team member had compiled the code), however I expected to get the result. But what if I found 5 or 7 zfs.conf files?. Slow.
I used strace. It was not installed but the RHEL license was active so I simple did:
yum install strace
strace stands for System Trace and so it records all the System Calls that the programs do.
That’s a pro trick that will accompany you all your career.
So I did:
strace modprobe zfs
I did not use -v in here cause all the verbose would had been logged as a System Call and made more difficult my search.
I got the output of all the System Calls and I just had to look for which files were being read.
Then I found that zfs.conf under /etc/modprobe.d/zfs.conf
That was the one being read. So I commented the line and tried modprobe zfs and it worked perfectly. :)
In this article I want to explain how I created a content filter for Postfix, in PHP.
The basic idea is to examine all the incoming messages, looking for a Credit Card pattern, and then sending those emails to another Server, that for instance is PCI compliant, and sending an email to the original receiver telling that they received an email with a CC, that is stored in a safe Server.
I choose the pipe mechanism, because is the last one in the chain of content filters, and first I want to pass the antivirus (Amavis), antispam and other content filters.
Then I inject the emails to sendmail, with the params -G -i , granting that the email will not be reprocessed entering an infinite loop.
/usr/sbin/sendmail -G -i
A remembering about the SMTP protocol, that I’ll mention later. Another link in wikipedia.
Edit the file /etc/postfix/master.cf to add these lines:
# ========================================================================== # service type private unpriv chroot wakeup maxproc command + args # (yes) (yes) (yes) (never) (100) # ========================================================================== smtp inet n - n - - smtpd -o content_filter=filter:dummy # Other external delivery methods. filter unix - n n - 10 pipe flags=Rq user=filter argv=/var/filtermails/filtercard.php -f ${sender} -- ${size} ${recipient}
The last parameter ${recipient} will expand with as many recipients (RCPT TO:) as the mail has.
Now the code for the PHP filter. Check a simple content filter example here.
The file /var/filtermails/filtercard.php
#!/usr/bin/php
<?php
/*
* Carles Mateo
*/
date_default_timezone_set('Europe/Andorra');
$s_dest_mail_secure = 'secure@pciserver.carlesmateo.com';
$b_regex_found = false;
$b_emails_rcpt_to = Array();
// All major credit cards regex
// The CC anywhere
$s_cc_regex = '/(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6011[0-9]{12}|622((12[6-9]|1[3-9][0-9])|([2-8][0-9][0-9])|(9(([0-1][0-9])|(2[0-5]))))[0-9]{10}|64[4-9][0-9]{13}|65[0-9]{14}|3(?:0[0-5]|[68][0-9])[0-9]{11}|3[47][0-9]{13})/';
function log_event($s_message) {
syslog(LOG_WARNING, $s_message);
}
function save_message_to_file($s_file, $s_message) {
$o_file = fopen($s_file, "a");
fwrite($o_file, $s_message);
fclose($o_file);
}
function read_file($s_file) {
$s_contents = file_get_contents($s_file);
if ($s_contents === false) {
return '';
}
return $s_contents;
}
function get_all_rcpt_to($st_emails_input) {
// First email is pos 5 of the array
$st_emails = $st_emails_input;
unset($st_emails[0]);
unset($st_emails[1]);
unset($st_emails[2]);
unset($st_emails[3]);
unset($st_emails[4]);
asort($st_emails);
return $st_emails;
}
/*
* Returns a @secure. email, from the original email
*/
function get_secure_email($s_email) {
$i_pos = strpos($s_email, '@');
$s_email_new = $s_email;
if ($i_pos > 0) {
$s_email_new = substr($s_email, 0, $i_pos);
$s_email_new .= 'secure.';
$s_email_new .= substr($s_email, $i_pos +1);
}
return $s_email_new;
}
function replace_tpl_variables($s_text, $s_sender_original) {
// TODO: Replace static values
$s_date_sent = date('r'); // RFC 2822 formatted date
$s_text = str_replace('#DATE_NOW#', $s_date_sent, $s_text);
$s_text = str_replace('#FROM_NAME#', 'Carles Mateo', $s_text);
$s_text = str_replace('#FROM_EMAIL#', 'mateo@blog.carlesmateo.com', $s_text);
$s_text = str_replace('#EMAIL_SENDER_ORIGINAL#', $s_sender_original, $s_text);
return $s_text;
}
function delete_file($s_file) {
unlink($s_file);
}
// Read the RCPT TO: fields ${recipient}
$st_emails_rcpt_to = get_all_rcpt_to($argv);
// Read the email
$email = '';
$fd = fopen("php://stdin", "r");
while (!feof($fd)) {
$line = fread($fd, 1024);
$email .= $line;
}
fclose($fd);
// Get the portion of the email without headers (to avoid id's being detected as CC numbers)
$i_pos_subject = strpos($email, 'Subject:');
if ($i_pos_subject > 0) {
// Found
$email_sanitized = substr($email, $i_pos_subject);
} else {
// If we don't locate subject we look for From:
$i_pos_from = strpos($email, 'From:');
if ($i_pos_from > 0) {
$email_sanitized = substr($email, $i_pos_from);
} else {
// Impossible email, but continue
$email_sanitized = $email;
}
}
// Remove spaces, and points so we find 4111.1111.1111.111 and so
$email_sanitized = str_replace(' ', '', $email_sanitized);
$email_sanitized = str_replace('.', '', $email_sanitized);
$email_sanitized = str_replace('-', '', $email_sanitized);
$s_message = "Script filtercard.php successfully ran\n";
log_event('Arguments: '.serialize($argv));
$i_result = preg_match($s_cc_regex, $email_sanitized, $s_matches);
if ($i_result == 1) {
$b_regex_found = true;
$s_message .= 'Card found'."\n";
log_event($s_message);
} else {
// No credit card
$s_message .= 'No credit card found'."\n";
log_event($s_message);
}
$s_dest_mail_original = $argv[5];
$s_sender_original = $argv[2];
// Generate a unique id
$i_unique_id = time().'-'.rand(0,99999).'-'.rand(0,99999);
$INSPECT_DIR='/var/spool/filter/';
// NEVER NEVER NEVER use "-t" here.
$SENDMAIL="/usr/sbin/sendmail -G -i";
$s_file_unique = $INSPECT_DIR.$i_unique_id;
# Exit codes from <sysexits.h>
$EX_TEMPFAIL=75;
$EX_UNAVAILABLE=69;
// Save the file
save_message_to_file($s_file_unique, $email);
$st_output = Array();
if ($b_regex_found == false) {
// Send normally
foreach ($st_emails_rcpt_to as $i_key=>$s_email_rcpt_to) {
$s_sendmail = $SENDMAIL.' "'.$s_email_rcpt_to.'" <'.$s_file_unique;
$i_status = exec($s_sendmail, $st_output);
log_event('Status Sendmail (original mail): '.$i_status.' to: '.$s_email_rcpt_to);
}
delete_file($s_file_unique);
exit();
}
// Send secure email
$s_sendmail = $SENDMAIL.' "'.$s_dest_mail_secure.'" <'.$s_file_unique;
$i_status = exec($s_sendmail, $st_output);
log_event('Status Sendmail (secure email): '.$i_status.' to: '.$s_dest_mail_secure);
$s_email_tpl = read_file('/usr/share/secure/smtpfilter_email.txt');
if ($s_email_tpl == '') {
// Generic message
$s_date_sent = date('r'); // RFC 2822 formatted date
$s_email_tpl = <<<EOT
Date: $s_date_sent
From: secure <noreply@secure.carlesmateo.com>
Subject: Message with a Credit Card from $s_sender_original
You received a message with a Credit Card
EOT;
}
$s_email_tpl = replace_tpl_variables($s_email_tpl, $s_sender_original);
save_message_to_file($s_file_unique.'-tpl', $s_email_tpl);
// Send the replacement email
foreach ($st_emails_rcpt_to as $i_key=>$s_email_rcpt_to) {
$st_output = Array();
$s_sendmail = $SENDMAIL.' "'.$s_email_rcpt_to.'" <'.$s_file_unique.'-tpl';
$i_status = exec($s_sendmail, $st_output);
log_event('Status Sendmail (TPL): '.$i_status.' to: '.$s_email_rcpt_to);
}
delete_file($s_file_unique);
delete_file($s_file_unique.'-tpl');
/* Headers:
From: Carles Mateo <mateo@carlesmateo.com>
To: "carles2@carlesmateo.com" <carles2@carlesmateo.com>, Secure
<secure@secure.carlesmateo.com>
CC: "test@carlesmateo.com" <test@carlesmateo.com>
Subject: Test with several emails and CCs
Thread-Topic: Test with several emails and CCs
Thread-Index: AQHRt1tmO/z+TpI64UiniKm7I56onw==
Date: Thu, 25 May 2016 14:32:15 +0000
*/
You can test it connecting by telnet to port 25 and doing (in bold the SMTP commands):
HELO mycomputer.com
MAIL FROM: test@carlesmateo.com
RCPT TO: just@asample.com
RCPT TO: another@different.com
DATA
Date: Mon, 30 May 2016 14:07:56 +0000
From: Carles Mateo <mateo@blog.carlesmateo.com>
To: Undisclosed recipients
Subject: Test with CC
This is just a test with a Visa CC 4111 1111 11-11-1111.
You can use the nc command for commodity.
When you’re all set I recommend you to test it by sending real emails from real servers