Whamcloud - gitweb
Branch: HEAD
[fs/lustre-release.git] / lustre / smfs / audit.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  lustre/smfs/audit_mds.c
5  *  Lustre filesystem audit part for MDS
6  *
7  *  Copyright (C) 2004 Cluster File Systems, Inc.
8  *
9  *   This file is part of Lustre, http://www.lustre.org.
10  *
11  *   Lustre is free software; you can redistribute it and/or
12  *   modify it under the terms of version 2 of the GNU General Public
13  *   License as published by the Free Software Foundation.
14  *
15  *   Lustre is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with Lustre; if not, write to the Free Software
22  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24 #ifndef EXPORT_SYMTAB
25 # define EXPORT_SYMTAB
26 #endif
27
28 #define DEBUG_SUBSYSTEM S_SM
29
30 #include <linux/kmod.h>
31 #include <linux/init.h>
32 #include <linux/fs.h>
33 #include <linux/slab.h>
34 #include <linux/obd_class.h>
35 #include <linux/obd_support.h>
36 #include <linux/lustre_lib.h>
37 #include <linux/lustre_idl.h>
38 #include <linux/lustre_fsfilt.h>
39 #include <linux/lustre_smfs.h>
40 #include <linux/lustre_audit.h>
41 #include <linux/lustre_log.h>
42 #include "smfs_internal.h"
43
44 static audit_op hook2audit(hook_op hook)
45 {
46         audit_op opcode = AUDIT_UNKNOWN;
47
48         switch (hook) 
49         {
50                 case HOOK_CREATE:
51                 case HOOK_SYMLINK:
52                 case HOOK_MKDIR:
53                 case HOOK_MKNOD:
54                         return AUDIT_CREATE;
55                         
56                 case HOOK_LINK:
57                         return AUDIT_LINK;
58                                                 
59                 case HOOK_RMDIR:
60                 case HOOK_UNLINK:
61                         return AUDIT_UNLINK;
62                         
63                 case HOOK_READLINK:
64                         return AUDIT_READLINK;
65                         
66                 case HOOK_RENAME:
67                         return AUDIT_RENAME;
68                         
69                 case HOOK_SETATTR:
70                 case HOOK_F_SETATTR:
71                         return AUDIT_SETATTR;
72                         
73                 case HOOK_SI_WRITE:
74                 case HOOK_WRITE:
75                         return AUDIT_WRITE;
76                         
77                 case HOOK_SI_READ:
78                 case HOOK_READ:
79                         return AUDIT_READ;
80
81                 case HOOK_READDIR:
82                         return AUDIT_READDIR;
83
84                 default:
85                         break;
86         }
87         
88         return opcode;
89 }
90
91 struct inode * get_inode_from_hook(hook_op hook, void * msg) 
92 {
93         struct inode * inode;
94         
95         switch (hook)
96         {
97                 case HOOK_LINK:
98                 {
99                         struct hook_link_msg * m = msg;
100                         inode = m->dentry->d_inode;
101                         break;
102                 }
103                 case HOOK_UNLINK:
104                 case HOOK_RMDIR:
105                 {
106                         struct hook_unlink_msg * m = msg;
107                         inode = m->dentry->d_inode;
108                         break;
109                 }
110                 case HOOK_READLINK:
111                 {
112                         struct hook_symlink_msg * m = msg;
113                         inode = m->dentry->d_inode;
114                         break;
115                 }        
116                 case HOOK_RENAME:
117                 {
118                         struct hook_rename_msg * m = msg;
119                         inode = m->dentry->d_inode;
120                         break;
121                 }        
122                 default:
123                         inode = NULL;
124         }
125
126         return inode;
127 }
128
129 static inline int smfs_get_inode_audit(struct inode *inode, __u64 *mask)
130 {
131         struct fsfilt_operations *fsfilt = S2SMI(inode->i_sb)->sm_cache_fsfilt;
132         struct smfs_inode_info * smi = I2SMI(inode);
133         int rc = 0;
134         
135         /* omit __iopen__ dir */
136         if (inode->i_ino == SMFS_IOPEN_INO) {
137                 *mask = AUDIT_OFF;
138                 RETURN(-ENOENT);
139         }
140         if (smi->au_info.au_valid)
141                 *mask = smi->au_info.au_mask;
142         else {
143                 rc = fsfilt->fs_get_xattr(I2CI(inode), AUDIT_ATTR_EA,
144                                           mask, sizeof(*mask));
145                 if (rc <= 0)
146                         *mask = AUDIT_OFF;
147                 smi->au_info.au_valid = 1;
148                 smi->au_info.au_mask = *mask;
149         }
150         RETURN(0);
151 }
152
153 /* is called also from fsfilt_smfs_get_info */
154 int smfs_get_audit(struct super_block * sb, struct inode * parent,
155                    struct inode * inode,  __u64 * mask)
156 {
157         struct smfs_super_info * smb = S2SMI(sb);
158         struct obd_device * obd = smb->smsi_exp->exp_obd;
159         struct audit_priv * priv = NULL;
160         
161         ENTRY;
162         
163         if (!SMFS_IS(smb->plg_flags, SMFS_PLG_AUDIT))
164                 RETURN(-EINVAL);
165         
166         priv = smfs_get_plg_priv(S2SMI(sb), SMFS_PLG_AUDIT);
167               
168         if (!priv)
169                 RETURN(-ENOENT);
170         
171         if (IS_AUDIT(priv->a_mask)) {
172                 /* no audit for directories on OSS */
173                 if (inode && S_ISDIR(inode->i_mode) &&
174                     !strcmp(obd->obd_type->typ_name, OBD_FILTER_DEVICENAME))
175                         RETURN(-EINVAL);
176                 (*mask) = priv->a_mask;
177                 RETURN(0);
178         }
179         
180         /* get inode audit EA */
181         if (parent) {
182                 smfs_get_inode_audit(parent, mask);
183                 /* check if parent has audit */
184                 if (IS_AUDIT(*mask))
185                         RETURN(0);
186         }
187         
188         if (inode) {
189                 smfs_get_inode_audit(inode, mask);
190                 if (IS_AUDIT(*mask))
191                         RETURN(0);
192         }
193
194         RETURN(-ENODATA);
195 }
196
197 int smfs_audit_check(struct inode * parent, hook_op hook, int ret,
198                      struct audit_priv * priv, void * msg)
199 {
200         audit_op code;
201         struct inode * inode = NULL;
202         __u64 mask = 0;
203         int rc = 0;
204         
205         ENTRY;
206
207         if (hook == HOOK_SPECIAL) { 
208                 struct audit_info * info = msg;
209                 code = info->m.code;
210                 inode = info->child;
211         }
212         else {
213                 inode = get_inode_from_hook(hook, msg);
214                 code = hook2audit(hook);
215         }
216         
217         rc = smfs_get_audit(parent->i_sb, parent, inode, &mask);
218         
219         if (rc < 0)
220                 RETURN(0);
221
222         //should only failures be audited?
223         if (ret >= 0 && IS_AUDIT_OP(mask, AUDIT_FAIL))
224                 RETURN(0); 
225
226         //check audit mask
227         RETURN(IS_AUDIT_OP(mask, code));
228 }
229
230 static int smfs_set_fs_audit (struct super_block * sb, __u64 *mask)
231 {
232         struct smfs_super_info * smb = S2SMI(sb);
233         struct fsfilt_operations * fsfilt = smb->sm_fsfilt;
234         int rc = 0;
235         loff_t off = 0;
236         struct file * f = NULL;
237         struct audit_priv *priv;
238         struct lvfs_run_ctxt * ctxt, saved;
239         ENTRY;
240         
241         ctxt = &smb->smsi_exp->exp_obd->obd_lvfs_ctxt;
242         
243         priv = smfs_get_plg_priv(smb, SMFS_PLG_AUDIT);
244         if(!priv) {
245                 CERROR("Audit is not initialized, use mountoptions 'audit'\n");
246                 RETURN(-EINVAL);
247         }
248         
249         push_ctxt(&saved, ctxt, NULL);
250
251         f = filp_open(AUDIT_ATTR_FILE, O_RDWR|O_CREAT, 0600);
252         if (IS_ERR(f)) {
253                 CERROR("cannot get audit_setting file\n");
254                 rc = -EINVAL;
255                 goto exit;
256         }
257                 
258         rc = fsfilt->fs_write_record(f, mask, sizeof(*mask), &off, 1);
259         if (rc) {
260                 CERROR("error writting audit setting: rc = %d\n", rc);
261                 goto exit;
262         }
263         
264         priv->a_mask = (*mask);
265         
266 exit:
267         if (f)
268                 filp_close(f, 0);
269
270         pop_ctxt(&saved, ctxt, NULL);
271
272         RETURN (rc);
273 }
274
275 //set audit attributes for directory/file
276 int smfs_set_audit(struct super_block * sb, struct inode * inode,
277                    __u64 * mask)
278 {
279         void * handle = NULL;
280         struct fsfilt_operations * fsfilt = S2SMI(sb)->sm_fsfilt;
281         struct smfs_inode_info *smi = NULL;
282         int rc = 0;
283         
284         ENTRY;
285         
286         if (IS_AUDIT_OP((*mask), AUDIT_SYNC)) {
287                 struct audit_priv *priv;
288                 
289                 priv = smfs_get_plg_priv(S2SMI(sb), SMFS_PLG_AUDIT);
290                 if (priv)
291                         audit_notify(priv->audit_ctxt->loc_handle, NULL);
292                 //to wait for flush
293                 return audit_notify(NULL, NULL);
294         }        
295         if (IS_AUDIT_OP((*mask), AUDIT_FS))
296                 return smfs_set_fs_audit(sb, mask);
297
298         LASSERT(inode);
299         smi = I2SMI(inode);
300         /* save audit EA in inode_info */
301         if (rc >= 0) {
302                 smi->au_info.au_mask = *mask;
303                 smi->au_info.au_valid = 1;
304         }
305         
306         handle = fsfilt->fs_start(inode, FSFILT_OP_SETATTR, NULL, 0);
307         if (IS_ERR(handle))
308                 RETURN(PTR_ERR(handle));
309         
310         if (fsfilt->fs_set_xattr)
311                 rc = fsfilt->fs_set_xattr(inode, handle, AUDIT_ATTR_EA,
312                                           mask, sizeof(*mask));
313         fsfilt->fs_commit(inode->i_sb, inode, handle, 1);
314         RETURN(rc);
315                                 
316 }
317
318 static int smfs_audit_post_op(hook_op code, struct inode * inode, void * msg,
319                               int ret, void * arg)
320 {
321         int rc = 0, len;
322         char * buffer = NULL;
323         struct audit_record * rec = NULL;
324         struct llog_rec_hdr * llh;
325         struct timeval cur_time;
326         struct audit_priv * priv = arg;
327         audit_get_op * handler = priv->audit_get_record;
328
329         //check that we are in lustre ctxt
330         if (!SMFS_IS(I2SMI(inode)->smi_flags, SMFS_PLG_AUDIT))
331                 return 0;
332         
333         if (!handler || !handler[code])
334                 return 0;
335         
336         if (smfs_audit_check(inode, code, ret, priv, msg) == 0)
337                 return 0;
338
339         ENTRY;
340         
341         do_gettimeofday(&cur_time);
342
343         OBD_ALLOC(buffer, PAGE_SIZE);
344         if (!buffer)
345                 RETURN(-ENOMEM);
346         
347         llh = (void*)buffer;
348         //fill common fields
349         rec = (void*)(buffer + sizeof(*llh));
350                
351         rec->result = ret;
352         rec->uid = current->uid;
353         rec->gid = current->gid;
354         rec->nid = current->user->nid;
355         rec->time = cur_time.tv_sec * USEC_PER_SEC + cur_time.tv_usec;
356         
357         len = handler[code](inode, msg, priv, (char*)rec,
358                                            &llh->lrh_type);
359         
360         LASSERT(llh->lrh_type == SMFS_AUDIT_GEN_REC ||
361                 llh->lrh_type == SMFS_AUDIT_NAME_REC);
362
363         llh->lrh_len = size_round(len);
364
365         rc = llog_cat_add_rec(priv->audit_ctxt->loc_handle, llh, NULL,
366                               (void*)rec, NULL, NULL); 
367         if (rc != 0) {
368                 CERROR("Error adding audit record: %d\n", rc);
369                 rc= -EINVAL;
370         /* delay notify for create op */
371         } else if (!(code == HOOK_CREATE && ret == 0)) { 
372                 audit_notify(priv->audit_ctxt->loc_handle, priv->au_id2name);
373         }
374         
375         OBD_FREE(buffer, PAGE_SIZE);
376         
377         RETURN(rc);
378 }
379
380 /* Helpers */
381 static int smfs_trans_audit (struct super_block *sb, void *arg,
382                            struct audit_priv * priv)
383 {
384         int size = 1; //one record in log per operation.
385
386         return size;
387 }
388
389 extern int mds_alloc_inode_ids(struct obd_device *, struct inode *,
390                         void *, struct lustre_id *, struct lustre_id *);
391
392 static int smfs_start_audit(struct super_block *sb, void *arg,
393                           struct audit_priv * audit_p)
394 {
395         struct smfs_super_info * smb = S2SMI(sb);
396         struct fsfilt_operations * fsfilt = smb->sm_fsfilt;
397         struct obd_device *obd = arg;
398         struct file * f;
399         int rc = 0;
400
401         ENTRY;
402
403         //is plugin already activated
404         if (SMFS_IS(smb->plg_flags, SMFS_PLG_AUDIT))
405                 RETURN(0);
406         
407         rc = audit_start_transferd();
408         if (rc) {
409                 CERROR("can't start audit transfer daemon. rc:%d\n", rc);
410                 RETURN(rc);
411         }
412         
413         if (obd && obd->obd_type && obd->obd_type->typ_name) {
414                 if (!strcmp(obd->obd_type->typ_name, "mds")) {
415                         CDEBUG(D_INODE, "Setup MDS audit handler\n");
416                         audit_mds_setup(obd, sb, audit_p);
417                 }
418                 else if (!strcmp(obd->obd_type->typ_name, "obdfilter")) {
419                         CDEBUG(D_INODE, "Setup OST audit handler\n");
420                         audit_ost_setup(obd, sb, audit_p);
421                 }
422                 else {
423                         CDEBUG(D_INODE, "Unknown obd type %s\n",
424                                obd->obd_type->typ_name);       
425                         RETURN(0);
426                 }
427         }
428         //read fs audit settings if any
429         audit_p->a_mask = AUDIT_OFF;
430
431         f = filp_open(AUDIT_ATTR_FILE, O_RDONLY, 0644);
432         if (!IS_ERR(f)) {
433                 loff_t off = 0;
434                 rc = fsfilt->fs_read_record(f, &audit_p->a_mask, 
435                                         sizeof(audit_p->a_mask), &off);
436                 if (rc) {
437                         CERROR("error reading audit setting: rc = %d\n", rc);
438                 }
439                 filp_close(f, 0);
440         }
441         
442         SMFS_SET(smb->plg_flags, SMFS_PLG_AUDIT);
443
444         RETURN(0);
445 }
446
447 int smfs_stop_audit(struct super_block *sb, void *arg,
448                   struct audit_priv * audit_p)
449 {
450         struct smfs_super_info * smb = S2SMI(sb);
451         struct llog_ctxt *ctxt = audit_p->audit_ctxt;
452         ENTRY;
453
454         if (!SMFS_IS(smb->plg_flags, SMFS_PLG_AUDIT))
455                 RETURN(0);
456
457         audit_stop_transferd();
458
459         SMFS_CLEAR(smb->plg_flags, SMFS_PLG_AUDIT);
460
461         if (ctxt->loc_llogs)
462                 ctxt->loc_llogs->llog_ctxt[LLOG_AUDIT_ORIG_CTXT] = NULL;
463
464         llog_catalog_cleanup(ctxt);
465         OBD_FREE(ctxt, sizeof(*ctxt));
466         audit_p->audit_ctxt = NULL;
467         
468         RETURN(0);
469 }
470
471 int smfs_audit_set_info(struct super_block *sb, void *arg,
472                         struct audit_priv *priv) {
473         struct plg_info_msg * msg = arg;
474         if (KEY_IS(msg->key, "id2name")) {
475                 priv->au_id2name = msg->val;
476         }
477                          
478         return 0;
479 }
480
481 typedef int (*audit_helper)(struct super_block * sb, void *msg, struct audit_priv *);
482 static audit_helper smfs_audit_helpers[PLG_HELPER_MAX] = {
483         [PLG_START]      smfs_start_audit,
484         [PLG_STOP]       smfs_stop_audit,
485         [PLG_TRANS_SIZE] smfs_trans_audit,
486         [PLG_TEST_INODE] NULL,
487         [PLG_SET_INODE]  NULL,
488         [PLG_SET_INFO]   smfs_audit_set_info,
489 };
490
491 static int smfs_audit_help_op(int code, struct super_block * sb,
492                             void * arg, void * priv)
493 {
494         int rc = 0;
495         
496         if (smfs_audit_helpers[code])
497                 rc = smfs_audit_helpers[code](sb, arg, (struct audit_priv *) priv);
498         return rc;
499 }
500
501 static int smfs_exit_audit(struct super_block *sb, 
502                            void * arg)
503 {
504         struct audit_priv * priv = arg;
505         struct smfs_plugin * plg;
506         ENTRY;
507
508         plg = smfs_deregister_plugin(sb, SMFS_PLG_AUDIT);
509         if (plg)
510                 OBD_FREE(plg, sizeof(*plg));
511         else
512                 CERROR("Cannot find AUDIT plugin while unregistering\n");
513         
514         if (priv)
515                 OBD_FREE(priv, sizeof(*priv));
516         
517         RETURN(0);
518 }
519
520 int smfs_init_audit(struct super_block *sb)
521 {
522         int rc = 0;
523         struct audit_priv * priv = NULL;
524         struct smfs_plugin * plg = NULL;
525
526         ENTRY;
527         
528         OBD_ALLOC(plg, sizeof(*plg));
529         if (!plg) {
530                 rc = -ENOMEM;
531                 goto exit;
532         }
533         
534         plg->plg_type = SMFS_PLG_AUDIT;
535         plg->plg_post_op = &smfs_audit_post_op;
536         plg->plg_helper = &smfs_audit_help_op;
537         plg->plg_exit = &smfs_exit_audit;
538
539         OBD_ALLOC(priv, sizeof(*priv));
540         if (!priv) {
541                 rc = -ENOMEM;
542                 goto exit;
543         }
544
545         plg->plg_private = priv;
546         rc = smfs_register_plugin(sb, plg);
547         if (!rc)
548                 RETURN(0);
549 exit:
550         if (priv)
551                 OBD_FREE(priv, sizeof(*priv));
552         
553         if (plg)
554                 OBD_FREE(plg, sizeof(*plg));
555
556         RETURN(rc);
557
558 }
559
560 int audit_client_log(struct super_block * sb, struct audit_msg * msg)
561 {
562         struct smfs_super_info * smb = S2SMI(sb);
563         char *buffer = NULL, *pbuf = NULL;
564         struct audit_record * rec = NULL;
565         struct llog_rec_hdr * llh;
566         struct llog_handle * ll_handle = NULL;
567         int len = 0, rc = 0;
568         struct timeval cur_time;
569         //char name[32];
570         struct audit_priv * priv;
571         
572         ENTRY;
573         
574         do_gettimeofday(&cur_time);
575         
576         priv = smfs_get_plg_priv(smb, SMFS_PLG_AUDIT);
577         if (!priv)
578                 RETURN(-EINVAL);
579         
580         ll_handle = priv->audit_ctxt->loc_handle;
581         
582         OBD_ALLOC(buffer, PAGE_SIZE);
583         if (!buffer)
584                 RETURN(-ENOMEM);
585         
586         llh = (void*)buffer;
587         llh->lrh_type = SMFS_AUDIT_GEN_REC;
588
589         //fill common fields
590         rec = (void*)buffer + sizeof(*llh);
591         rec->opcode = msg->code;
592         rec->result = msg->result;
593         rec->uid = msg->uid;
594         rec->gid = msg->gid;
595         rec->nid = msg->nid;
596         rec->time = cur_time.tv_sec * USEC_PER_SEC + cur_time.tv_usec;
597         len = sizeof(*rec);
598         pbuf = (char*)rec + len;
599
600         CDEBUG(D_VFSTRACE, "AUDITLOG:"DLID4"\n", OLID4(&msg->id));
601         /* check id is valid */
602         LASSERT(id_ino(&msg->id));
603         LASSERT(id_fid(&msg->id));
604         //LASSERT(id_type(&msg->id) & S_IFMT);
605
606         switch (msg->code) {
607                 case AUDIT_READ:    
608                 case AUDIT_WRITE:
609                 case AUDIT_MMAP:
610                 case AUDIT_OPEN:
611                 case AUDIT_STAT:
612                         len += audit_rec_from_id(&pbuf, &msg->id);
613                         break;
614                 default:
615                         CERROR("Unknown code %i in audit_msg\n", msg->code);
616         }
617         
618         llh->lrh_len = size_round(len);
619
620         rc = llog_cat_add_rec(ll_handle, llh, NULL, (void*)rec, NULL, NULL);
621         if (rc != 0) {
622                 CERROR("Error adding audit client record: %d\n", rc);
623                 rc= -EINVAL;
624         } else {
625                 audit_notify(ll_handle, priv->au_id2name);
626         }
627         
628         OBD_FREE(buffer, PAGE_SIZE);
629         return rc;
630 }
631