Whamcloud - gitweb
73a6c35c2d7b91f8920a45f5380bd4a8e752d80f
[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         } else {
371                 audit_notify(priv->audit_ctxt->loc_handle, priv->au_id2name);
372         }
373         
374         OBD_FREE(buffer, PAGE_SIZE);
375         
376         RETURN(rc);
377 }
378
379 /* Helpers */
380 static int smfs_trans_audit (struct super_block *sb, void *arg,
381                            struct audit_priv * priv)
382 {
383         int size = 1; //one record in log per operation.
384
385         return size;
386 }
387
388 extern int mds_alloc_inode_ids(struct obd_device *, struct inode *,
389                         void *, struct lustre_id *, struct lustre_id *);
390
391 static int smfs_start_audit(struct super_block *sb, void *arg,
392                           struct audit_priv * audit_p)
393 {
394         struct smfs_super_info * smb = S2SMI(sb);
395         struct fsfilt_operations * fsfilt = smb->sm_fsfilt;
396         struct obd_device *obd = arg;
397         struct file * f;
398         int rc = 0;
399
400         ENTRY;
401
402         //is plugin already activated
403         if (SMFS_IS(smb->plg_flags, SMFS_PLG_AUDIT))
404                 RETURN(0);
405         
406         rc = audit_start_transferd();
407         if (rc) {
408                 CERROR("can't start audit transfer daemon. rc:%d\n", rc);
409                 RETURN(rc);
410         }
411         
412         if (obd && obd->obd_type && obd->obd_type->typ_name) {
413                 if (!strcmp(obd->obd_type->typ_name, "mds")) {
414                         CDEBUG(D_INODE, "Setup MDS audit handler\n");
415                         audit_mds_setup(obd, sb, audit_p);
416                 }
417                 else if (!strcmp(obd->obd_type->typ_name, "obdfilter")) {
418                         CDEBUG(D_INODE, "Setup OST audit handler\n");
419                         audit_ost_setup(obd, sb, audit_p);
420                 }
421                 else {
422                         CDEBUG(D_INODE, "Unknown obd type %s\n",
423                                obd->obd_type->typ_name);       
424                         RETURN(0);
425                 }
426         }
427         //read fs audit settings if any
428         audit_p->a_mask = AUDIT_OFF;
429
430         f = filp_open(AUDIT_ATTR_FILE, O_RDONLY, 0644);
431         if (!IS_ERR(f)) {
432                 loff_t off = 0;
433                 rc = fsfilt->fs_read_record(f, &audit_p->a_mask, 
434                                         sizeof(audit_p->a_mask), &off);
435                 if (rc) {
436                         CERROR("error reading audit setting: rc = %d\n", rc);
437                 }
438                 filp_close(f, 0);
439         }
440         
441         SMFS_SET(smb->plg_flags, SMFS_PLG_AUDIT);
442
443         RETURN(0);
444 }
445
446 int smfs_stop_audit(struct super_block *sb, void *arg,
447                   struct audit_priv * audit_p)
448 {
449         struct smfs_super_info * smb = S2SMI(sb);
450         struct llog_ctxt *ctxt = audit_p->audit_ctxt;
451         ENTRY;
452
453         if (!SMFS_IS(smb->plg_flags, SMFS_PLG_AUDIT))
454                 RETURN(0);
455
456         audit_stop_transferd();
457
458         SMFS_CLEAR(smb->plg_flags, SMFS_PLG_AUDIT);
459
460         if (ctxt->loc_llogs)
461                 ctxt->loc_llogs->llog_ctxt[LLOG_AUDIT_ORIG_CTXT] = NULL;
462
463         llog_catalog_cleanup(ctxt);
464         OBD_FREE(ctxt, sizeof(*ctxt));
465         audit_p->audit_ctxt = NULL;
466         
467         RETURN(0);
468 }
469
470 int smfs_audit_set_info(struct super_block *sb, void *arg,
471                         struct audit_priv *priv) {
472         struct plg_info_msg * msg = arg;
473         if (KEY_IS(msg->key, "id2name")) {
474                 priv->au_id2name = msg->val;
475         }
476                          
477         return 0;
478 }
479
480 typedef int (*audit_helper)(struct super_block * sb, void *msg, struct audit_priv *);
481 static audit_helper smfs_audit_helpers[PLG_HELPER_MAX] = {
482         [PLG_START]      smfs_start_audit,
483         [PLG_STOP]       smfs_stop_audit,
484         [PLG_TRANS_SIZE] smfs_trans_audit,
485         [PLG_TEST_INODE] NULL,
486         [PLG_SET_INODE]  NULL,
487         [PLG_SET_INFO]   smfs_audit_set_info,
488 };
489
490 static int smfs_audit_help_op(int code, struct super_block * sb,
491                             void * arg, void * priv)
492 {
493         int rc = 0;
494         
495         if (smfs_audit_helpers[code])
496                 rc = smfs_audit_helpers[code](sb, arg, (struct audit_priv *) priv);
497         return rc;
498 }
499
500 static int smfs_exit_audit(struct super_block *sb, 
501                            void * arg)
502 {
503         struct audit_priv * priv = arg;
504         struct smfs_plugin * plg;
505         ENTRY;
506
507         plg = smfs_deregister_plugin(sb, SMFS_PLG_AUDIT);
508         if (plg)
509                 OBD_FREE(plg, sizeof(*plg));
510         else
511                 CERROR("Cannot find AUDIT plugin while unregistering\n");
512         
513         if (priv)
514                 OBD_FREE(priv, sizeof(*priv));
515         
516         RETURN(0);
517 }
518
519 int smfs_init_audit(struct super_block *sb)
520 {
521         int rc = 0;
522         struct audit_priv * priv = NULL;
523         struct smfs_plugin * plg = NULL;
524
525         ENTRY;
526         
527         OBD_ALLOC(plg, sizeof(*plg));
528         if (!plg) {
529                 rc = -ENOMEM;
530                 goto exit;
531         }
532         
533         plg->plg_type = SMFS_PLG_AUDIT;
534         plg->plg_post_op = &smfs_audit_post_op;
535         plg->plg_helper = &smfs_audit_help_op;
536         plg->plg_exit = &smfs_exit_audit;
537
538         OBD_ALLOC(priv, sizeof(*priv));
539         if (!priv) {
540                 rc = -ENOMEM;
541                 goto exit;
542         }
543
544         plg->plg_private = priv;
545         rc = smfs_register_plugin(sb, plg);
546         if (!rc)
547                 RETURN(0);
548 exit:
549         if (priv)
550                 OBD_FREE(priv, sizeof(*priv));
551         
552         if (plg)
553                 OBD_FREE(plg, sizeof(*plg));
554
555         RETURN(rc);
556
557 }
558
559 int audit_client_log(struct super_block * sb, struct audit_msg * msg)
560 {
561         struct smfs_super_info * smb = S2SMI(sb);
562         char *buffer = NULL, *pbuf = NULL;
563         struct audit_record * rec = NULL;
564         struct llog_rec_hdr * llh;
565         struct llog_handle * ll_handle = NULL;
566         int len = 0, rc = 0;
567         struct timeval cur_time;
568         //char name[32];
569         struct audit_priv * priv;
570         
571         ENTRY;
572         
573         do_gettimeofday(&cur_time);
574         
575         priv = smfs_get_plg_priv(smb, SMFS_PLG_AUDIT);
576         if (!priv)
577                 RETURN(-EINVAL);
578         
579         ll_handle = priv->audit_ctxt->loc_handle;
580         
581         OBD_ALLOC(buffer, PAGE_SIZE);
582         if (!buffer)
583                 RETURN(-ENOMEM);
584         
585         llh = (void*)buffer;
586         llh->lrh_type = SMFS_AUDIT_GEN_REC;
587
588         //fill common fields
589         rec = (void*)buffer + sizeof(*llh);
590         rec->opcode = msg->code;
591         rec->result = msg->result;
592         rec->uid = msg->uid;
593         rec->gid = msg->gid;
594         rec->nid = msg->nid;
595         rec->time = cur_time.tv_sec * USEC_PER_SEC + cur_time.tv_usec;
596         len = sizeof(*rec);
597         pbuf = (char*)rec + len;
598
599         CDEBUG(D_VFSTRACE, "AUDITLOG:"DLID4"\n", OLID4(&msg->id));
600         /* check id is valid */
601         LASSERT(id_ino(&msg->id));
602         LASSERT(id_fid(&msg->id));
603         //LASSERT(id_type(&msg->id) & S_IFMT);
604
605         switch (msg->code) {
606                 case AUDIT_READ:    
607                 case AUDIT_WRITE:
608                 case AUDIT_MMAP:
609                 case AUDIT_OPEN:
610                 case AUDIT_STAT:
611                         len += audit_rec_from_id(&pbuf, &msg->id);
612                         break;
613                 default:
614                         CERROR("Unknown code %i in audit_msg\n", msg->code);
615         }
616         
617         llh->lrh_len = size_round(len);
618
619         rc = llog_cat_add_rec(ll_handle, llh, NULL, (void*)rec, NULL, NULL);
620         if (rc != 0) {
621                 CERROR("Error adding audit client record: %d\n", rc);
622                 rc= -EINVAL;
623         } else {
624                 audit_notify(ll_handle, priv->au_id2name);
625         }
626         
627         OBD_FREE(buffer, PAGE_SIZE);
628         return rc;
629 }
630