Whamcloud - gitweb
b=7390, 7409
[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_FS))
287                 return smfs_set_fs_audit(sb, mask);
288
289         LASSERT(inode);
290         smi = I2SMI(inode);
291         /* save audit EA in inode_info */
292         if (rc >= 0) {
293                 smi->au_info.au_mask = *mask;
294                 smi->au_info.au_valid = 1;
295         }
296         
297         handle = fsfilt->fs_start(inode, FSFILT_OP_SETATTR, NULL, 0);
298         if (IS_ERR(handle))
299                 RETURN(PTR_ERR(handle));
300         
301         if (fsfilt->fs_set_xattr)
302                 rc = fsfilt->fs_set_xattr(inode, handle, AUDIT_ATTR_EA,
303                                           mask, sizeof(*mask));
304         fsfilt->fs_commit(inode->i_sb, inode, handle, 1);
305         RETURN(rc);
306                                 
307 }
308
309 static int smfs_audit_post_op(hook_op code, struct inode * inode, void * msg,
310                               int ret, void * arg)
311 {
312         int rc = 0, len;
313         char * buffer = NULL;
314         struct audit_record * rec = NULL;
315         struct llog_rec_hdr * llh;
316         struct timeval cur_time;
317         struct audit_priv * priv = arg;
318         audit_get_op * handler = priv->audit_get_record;
319
320         //check that we are in lustre ctxt
321         if (!SMFS_IS(I2SMI(inode)->smi_flags, SMFS_PLG_AUDIT))
322                 return 0;
323         
324         if (!handler || !handler[code])
325                 return 0;
326         
327         if (smfs_audit_check(inode, code, ret, priv, msg) == 0)
328                 return 0;
329
330         ENTRY;
331         
332         do_gettimeofday(&cur_time);
333
334         OBD_ALLOC(buffer, PAGE_SIZE);
335         if (!buffer)
336                 RETURN(-ENOMEM);
337         
338         llh = (void*)buffer;
339         //fill common fields
340         rec = (void*)(buffer + sizeof(*llh));
341                
342         rec->result = ret;
343         rec->uid = current->uid;
344         rec->gid = current->gid;
345         rec->nid = current->user->nid;
346         rec->time = cur_time.tv_sec * USEC_PER_SEC + cur_time.tv_usec;
347         
348         len = handler[code](inode, msg, priv, (char*)rec,
349                                            &llh->lrh_type);
350         
351         LASSERT(llh->lrh_type == SMFS_AUDIT_GEN_REC ||
352                 llh->lrh_type == SMFS_AUDIT_NAME_REC);
353
354         llh->lrh_len = size_round(len);
355
356         rc = llog_cat_add_rec(priv->audit_ctxt->loc_handle, llh, NULL,
357                               (void*)rec, NULL, NULL); 
358         if (rc != 0) {
359                 CERROR("Error adding audit record: %d\n", rc);
360                 rc= -EINVAL;
361         } else {
362                 audit_notify(priv->audit_ctxt->loc_handle, priv->au_id2name);
363         }
364         
365         OBD_FREE(buffer, PAGE_SIZE);
366         
367         RETURN(rc);
368 }
369
370 /* Helpers */
371 static int smfs_trans_audit (struct super_block *sb, void *arg,
372                            struct audit_priv * priv)
373 {
374         int size = 1; //one record in log per operation.
375
376         return size;
377 }
378
379 extern int mds_alloc_inode_ids(struct obd_device *, struct inode *,
380                         void *, struct lustre_id *, struct lustre_id *);
381
382 static int smfs_start_audit(struct super_block *sb, void *arg,
383                           struct audit_priv * audit_p)
384 {
385         struct smfs_super_info * smb = S2SMI(sb);
386         struct fsfilt_operations * fsfilt = smb->sm_fsfilt;
387         struct obd_device *obd = arg;
388         struct file * f;
389         int rc = 0;
390
391         ENTRY;
392
393         //is plugin already activated
394         if (SMFS_IS(smb->plg_flags, SMFS_PLG_AUDIT))
395                 RETURN(0);
396         
397         rc = audit_start_transferd();
398         if (rc) {
399                 CERROR("can't start audit transfer daemon. rc:%d\n", rc);
400                 RETURN(rc);
401         }
402         
403         if (obd && obd->obd_type && obd->obd_type->typ_name) {
404                 if (!strcmp(obd->obd_type->typ_name, "mds")) {
405                         CDEBUG(D_INODE, "Setup MDS audit handler\n");
406                         audit_mds_setup(obd, sb, audit_p);
407                 }
408                 else if (!strcmp(obd->obd_type->typ_name, "obdfilter")) {
409                         CDEBUG(D_INODE, "Setup OST audit handler\n");
410                         audit_ost_setup(obd, sb, audit_p);
411                 }
412                 else {
413                         CDEBUG(D_INODE, "Unknown obd type %s\n",
414                                obd->obd_type->typ_name);       
415                         RETURN(0);
416                 }
417         }
418         //read fs audit settings if any
419         audit_p->a_mask = AUDIT_OFF;
420
421         f = filp_open(AUDIT_ATTR_FILE, O_RDONLY, 0644);
422         if (!IS_ERR(f)) {
423                 loff_t off = 0;
424                 rc = fsfilt->fs_read_record(f, &audit_p->a_mask, 
425                                         sizeof(audit_p->a_mask), &off);
426                 if (rc) {
427                         CERROR("error reading audit setting: rc = %d\n", rc);
428                 }
429                 filp_close(f, 0);
430         }
431         
432         SMFS_SET(smb->plg_flags, SMFS_PLG_AUDIT);
433
434         RETURN(0);
435 }
436
437 int smfs_stop_audit(struct super_block *sb, void *arg,
438                   struct audit_priv * audit_p)
439 {
440         struct smfs_super_info * smb = S2SMI(sb);
441         struct llog_ctxt *ctxt = audit_p->audit_ctxt;
442         ENTRY;
443
444         if (!SMFS_IS(smb->plg_flags, SMFS_PLG_AUDIT))
445                 RETURN(0);
446
447         audit_stop_transferd();
448
449         SMFS_CLEAR(smb->plg_flags, SMFS_PLG_AUDIT);
450
451         if (ctxt->loc_llogs)
452                 ctxt->loc_llogs->llog_ctxt[LLOG_AUDIT_ORIG_CTXT] = NULL;
453
454         llog_catalog_cleanup(ctxt);
455         OBD_FREE(ctxt, sizeof(*ctxt));
456         audit_p->audit_ctxt = NULL;
457         
458         RETURN(0);
459 }
460
461 int smfs_audit_set_info(struct super_block *sb, void *arg,
462                         struct audit_priv *priv) {
463         struct plg_info_msg * msg = arg;
464         if (KEY_IS(msg->key, "id2name")) {
465                 priv->au_id2name = msg->val;
466         }
467                          
468         return 0;
469 }
470
471 typedef int (*audit_helper)(struct super_block * sb, void *msg, struct audit_priv *);
472 static audit_helper smfs_audit_helpers[PLG_HELPER_MAX] = {
473         [PLG_START]      smfs_start_audit,
474         [PLG_STOP]       smfs_stop_audit,
475         [PLG_TRANS_SIZE] smfs_trans_audit,
476         [PLG_TEST_INODE] NULL,
477         [PLG_SET_INODE]  NULL,
478         [PLG_SET_INFO]   smfs_audit_set_info,
479 };
480
481 static int smfs_audit_help_op(int code, struct super_block * sb,
482                             void * arg, void * priv)
483 {
484         int rc = 0;
485         
486         if (smfs_audit_helpers[code])
487                 rc = smfs_audit_helpers[code](sb, arg, (struct audit_priv *) priv);
488         return rc;
489 }
490
491 static int smfs_exit_audit(struct super_block *sb, 
492                            void * arg)
493 {
494         struct audit_priv * priv = arg;
495         struct smfs_plugin * plg;
496         ENTRY;
497
498         plg = smfs_deregister_plugin(sb, SMFS_PLG_AUDIT);
499         if (plg)
500                 OBD_FREE(plg, sizeof(*plg));
501         else
502                 CERROR("Cannot find AUDIT plugin while unregistering\n");
503         
504         if (priv)
505                 OBD_FREE(priv, sizeof(*priv));
506         
507         RETURN(0);
508 }
509
510 int smfs_init_audit(struct super_block *sb)
511 {
512         int rc = 0;
513         struct audit_priv * priv = NULL;
514         struct smfs_plugin * plg = NULL;
515
516         ENTRY;
517         
518         OBD_ALLOC(plg, sizeof(*plg));
519         if (!plg) {
520                 rc = -ENOMEM;
521                 goto exit;
522         }
523         
524         plg->plg_type = SMFS_PLG_AUDIT;
525         plg->plg_post_op = &smfs_audit_post_op;
526         plg->plg_helper = &smfs_audit_help_op;
527         plg->plg_exit = &smfs_exit_audit;
528
529         OBD_ALLOC(priv, sizeof(*priv));
530         if (!priv) {
531                 rc = -ENOMEM;
532                 goto exit;
533         }
534
535         plg->plg_private = priv;
536         rc = smfs_register_plugin(sb, plg);
537         if (!rc)
538                 RETURN(0);
539 exit:
540         if (priv)
541                 OBD_FREE(priv, sizeof(*priv));
542         
543         if (plg)
544                 OBD_FREE(plg, sizeof(*plg));
545
546         RETURN(rc);
547
548 }
549
550 int audit_client_log(struct super_block * sb, struct audit_msg * msg)
551 {
552         struct smfs_super_info * smb = S2SMI(sb);
553         char *buffer = NULL, *pbuf = NULL;
554         struct audit_record * rec = NULL;
555         struct llog_rec_hdr * llh;
556         struct llog_handle * ll_handle = NULL;
557         int len = 0, rc = 0;
558         struct timeval cur_time;
559         //char name[32];
560         struct audit_priv * priv;
561         
562         ENTRY;
563         
564         do_gettimeofday(&cur_time);
565         
566         priv = smfs_get_plg_priv(smb, SMFS_PLG_AUDIT);
567         if (!priv)
568                 RETURN(-EINVAL);
569         
570         ll_handle = priv->audit_ctxt->loc_handle;
571         
572         OBD_ALLOC(buffer, PAGE_SIZE);
573         if (!buffer)
574                 RETURN(-ENOMEM);
575         
576         llh = (void*)buffer;
577         llh->lrh_type = SMFS_AUDIT_GEN_REC;
578
579         //fill common fields
580         rec = (void*)buffer + sizeof(*llh);
581         rec->opcode = msg->code;
582         rec->result = msg->result;
583         rec->uid = msg->uid;
584         rec->gid = msg->gid;
585         rec->nid = msg->nid;
586         rec->time = cur_time.tv_sec * USEC_PER_SEC + cur_time.tv_usec;
587         len = sizeof(*rec);
588         pbuf = (char*)rec + len;
589
590         CDEBUG(D_VFSTRACE, "AUDITLOG:"DLID4"\n", OLID4(&msg->id));
591         /* check id is valid */
592         LASSERT(id_ino(&msg->id));
593         LASSERT(id_fid(&msg->id));
594         //LASSERT(id_type(&msg->id) & S_IFMT);
595
596         switch (msg->code) {
597                 case AUDIT_READ:    
598                 case AUDIT_WRITE:
599                 case AUDIT_MMAP:
600                 case AUDIT_OPEN:
601                 case AUDIT_STAT:
602                         len += audit_rec_from_id(&pbuf, &msg->id);
603                         break;
604                 default:
605                         CERROR("Unknown code %i in audit_msg\n", msg->code);
606         }
607         
608         llh->lrh_len = size_round(len);
609
610         rc = llog_cat_add_rec(ll_handle, llh, NULL, (void*)rec, NULL, NULL);
611         if (rc != 0) {
612                 CERROR("Error adding audit client record: %d\n", rc);
613                 rc= -EINVAL;
614         } else {
615                 audit_notify(ll_handle, priv->au_id2name);
616         }
617         
618         OBD_FREE(buffer, PAGE_SIZE);
619         return rc;
620 }
621