Iptables.php
[Pman.Admin] / Iptables.php
1 <?php
2 /***
3  * how this might work..
4  *
5  * a) login - if it's a new IP not seen that day
6  * --> touch /tmp/run_pman_admin_iptables
7  *
8  * cron every minute... ?? << could do some kind of IPC?!?
9  *
10  * if file exists -> run this code.
11  *
12  * This code finds all the IP's used in the last 24 hours.
13  * and opens the firew all for them.
14  *
15  *
16  *
17  *
18  *
19  
20  
21  *
22  *
23  */
24
25 require_once 'Pman.php';
26
27 class Pman_Admin_Iptables extends Pman {
28     
29     static $cli_desc = "Read ip addresses that have been used to log in, and add them to the iptables list..";
30     
31    
32     
33     function getAuth()
34     {
35         // add locking here..
36         
37         if (!$this->bootLoader->cli) {
38             die("cli only");
39         }
40     }
41     
42     function monitorFile()
43     {
44         $ev = DB_DataObject::Factory('Events');
45         $db = $ev->database();
46         
47         return '/tmp/run_pman_admin_iptables-'.$db;
48     }
49     
50     function get($opt = '')
51     {
52         
53         // monitor file
54         
55         $mf = $this->monitorFile();
56         
57         $fe = file_exists($mf);
58         if (empty($opt)) {
59             if (!$fe) {
60                 exit;
61             }
62         }
63         if ($fe) {
64             unlink($mf);
65         }
66         
67         // find IP's that have been used to log in.
68         // dump them to the iptables file.
69         // if it's different - apply it...
70         //DB_DataObject::debugLevel(1);
71         // need to get a list of users who have Admin.Iptables rights..
72         /*$gr = DB_DataObject::factory('group_rights');
73         $grps = $gr->groupsWithRights('Admin.Iptables', 'S');
74         
75         $gr = DB_DataObject::factory('groups');
76         $gr->get('name', 'Administrators');
77         $grps[] = $gr->id;
78         
79         $gm = DB_DataObject::factory('group_members');
80         $gm->whereAddIn('group_id', $grps, 'int');
81         $gm->selectAdd();
82         $gm->selectAdd('distinct(user_id) as user_id');
83         $peps = $gm->fetchAll('user_id');
84         
85         
86         */
87         
88         
89         $p = DB_DataObject::Factory('Person');
90         $p->autoJoin();
91         $p->whereAdd("join_company_id_id.comptype = 'OWNER'");
92         $p->selectAdd();
93         $p->selectAdd("{$p->tableName()}.id as  id");
94         
95         $peps = $p->fetchAll('id');
96         
97         
98         switch( $p->getDatabaseConnection()->phptype) {
99             case 'mysql':
100                 $interval = "INTERVAL 1 DAY";
101                 break;
102             case 'pgsql':
103                 $interval = " INTERVAL '1 DAY'";
104                 break;
105             default:
106                 die("database NOT SUPPORTED?!");
107         }
108         
109         $e = DB_DataObject::factory('Events');
110         $e->action = 'LOGIN';
111         $e->selectAdd();
112         $e->selectAdd(" 
113             distinct(ipaddr) as ipaddr
114             max(event_when) + $interval as expires
115                      
116         ");
117         $e->person_table = DB_DataObject::factory('person')->tableName();
118         $e->whereAddIn('person_id', $peps, 'int');
119         $e->groupBy('ipaddr');
120         $e->whereAdd("event_when > NOW() - $interval");
121                 
122        
123         $ips = $e->fetchAll('ipaddr','expires');
124
125         require_once 'System.php';
126         //inet addr:202.67.151.28  Bcast:202.67.151.255  Mask:255.255.255.0
127         $ifconfig = System::which('ifconfig');
128         
129         if (!$ifconfig) {
130             $this->jerr("ifconfig could not be found.");
131         }
132
133         $if = $this->exec($ifconfig);
134         
135          
136         foreach(explode("\n", $if) as $l) {
137             //var_dump($l);
138             if (!preg_match('/inet addr/', $l)) {
139                 continue;
140             }
141             $match = array();
142             preg_match('/\s*inet addr:([0-9.]+)\s+/', $l, $match);
143             $ips[$match[1]] = ''; // no expiry...
144             
145         }
146         $this->ips = $ips;
147         $cache = ini_get('session.save-path') . '/pman_admin_iptables.cache';
148         
149         $this->updateTables();
150         
151          
152         exit;
153
154     }
155     function updateTables()
156     {
157        
158         require_once 'System.php';
159         
160         $iptables = System::which('iptables');
161         
162          if (!$iptables) {
163             $this->jerr("iptables could not be found.");
164         }
165         // this should have been set up already..
166         // in the base firewall code.
167        
168         
169         // -A INPUT -p udp -m udp --dport 5432 -j postgres
170         // -A INPUT -p tcp -m tcp --dport 5432 -j postgres
171         
172         
173         // /sbin/iptables -L postgres -v -n --line-numbers
174         
175         $res = $this->exec("{$iptables} -L postgres -v -n --line-numbers");   
176        
177        
178         $lastrulenum = 1;
179        
180         $remove = array();
181         $old = array();
182        
183         foreach(explode("\n", $res) as $i => $line) {
184             if ($i == 1) {
185                 $head = preg_split('/\s+/', $line);
186                 $head[10] = 'comments';
187             }
188             if ($i < 2) {
189                 continue;
190             }
191             
192             $ar = preg_split('/\s+/', $line);
193             if (count($ar) < 3) {
194                 continue;
195             }
196             $ar[10] = implode(' ',array_slice($ar, 10));
197             $row = array();
198             foreach($head as $k=>$v) {
199                 $row[$v] = $ar[$k];
200             }
201            // print_r($row);
202             var_dump($row['target'])''
203             if ($row['target'] != 'ACCEPT') {
204                 continue;
205             }
206             
207             // got input rules now..
208             if (!empty($row['comment'])) {
209                 foreach((array)json_decode($row['comment']) as $k=>$v) {
210                     $row[$k] = $v;
211                 }
212             }
213             
214             if (!empty($row['expires'])) {
215                 if (strtotime($row['expires']) < time()) {
216                     $remove[ $row['source'] ] = $row;
217                 }
218             }
219             
220             $old[ $row['source'] ] = $row;
221             
222             $lastrulenum = $row['num'];
223             
224         }
225         
226         print_r($old);
227         exit;
228         //--comment
229         
230           
231          
232         foreach($this->ips as $ip=>$expires) {
233             $old = isset($cur[$ip]) ? $cur[$ip] : false;
234             if ($old) {
235                 if (strtotime($expires) <= strtotime($old['expires'])) {
236                     // expires time is the same..
237                     //?? make sure it's not flagged for removal..
238                     
239                     continue;
240                 }
241             }
242             
243             if ($old) {
244                 $this->exec("{$iptables} -R postgres {$old['num']} -s {$ip}/32 -j ACCEPT --comment ".
245                     escapeshellarg(json_encode(array('expires'=>$expires)))) ;
246                 
247                 if (isset($remove[$ip])) {
248                     unset($remove[$ip]);
249                 }
250                 continue;
251             }
252             
253             $this->exec("{$iptables} -I postgres {$lastrulenum} -s {$ip}/32 -j ACCEPT --comment ".
254                     escapeshellarg(json_encode(array('expires'=>$expires))));
255             
256                                    
257         }
258         
259         // remove rules that need deleting..
260         foreach($remove as $ip => $r) {
261             $this->exec("{$iptables} -d postgres {$r['num']} ");
262             
263         }
264         
265         
266   
267         
268     }
269     
270     
271     function createBase()
272     {
273         
274         $iptables = System::which('iptables');
275         if (!$iptables) {
276             $this->jerr("iptables could not be found.");
277         }
278         
279         
280         
281         $this->exec("{$iptables} -F postgres"); // flush old
282         $this->exec("{$iptables} -N postgres");  // create new..
283         
284         $this->exec($iptables. ' -A postgres -m limit --limit 2/min -j LOG '.
285                         '--log-prefix "IPTables-Dropped: " --log-level 4');
286         $this->exec("$iptables -A postgres -j DROP");  
287
288         
289         
290         
291         
292     }
293     
294     function exec($cmd)
295     {
296         echo "$cmd\n";
297         $ret =  `$cmd`;
298         echo $ret."\n";
299         return $ret;
300     }
301     
302 }