Merge tag 'devicetree-fixes-for-5.12-1' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / security / apparmor / lsm.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * AppArmor security module
4  *
5  * This file contains AppArmor LSM hooks.
6  *
7  * Copyright (C) 1998-2008 Novell/SUSE
8  * Copyright 2009-2010 Canonical Ltd.
9  */
10
11 #include <linux/lsm_hooks.h>
12 #include <linux/moduleparam.h>
13 #include <linux/mm.h>
14 #include <linux/mman.h>
15 #include <linux/mount.h>
16 #include <linux/namei.h>
17 #include <linux/ptrace.h>
18 #include <linux/ctype.h>
19 #include <linux/sysctl.h>
20 #include <linux/audit.h>
21 #include <linux/user_namespace.h>
22 #include <linux/netfilter_ipv4.h>
23 #include <linux/netfilter_ipv6.h>
24 #include <linux/zlib.h>
25 #include <net/sock.h>
26 #include <uapi/linux/mount.h>
27
28 #include "include/apparmor.h"
29 #include "include/apparmorfs.h"
30 #include "include/audit.h"
31 #include "include/capability.h"
32 #include "include/cred.h"
33 #include "include/file.h"
34 #include "include/ipc.h"
35 #include "include/net.h"
36 #include "include/path.h"
37 #include "include/label.h"
38 #include "include/policy.h"
39 #include "include/policy_ns.h"
40 #include "include/procattr.h"
41 #include "include/mount.h"
42 #include "include/secid.h"
43
44 /* Flag indicating whether initialization completed */
45 int apparmor_initialized;
46
47 union aa_buffer {
48         struct list_head list;
49         char buffer[1];
50 };
51
52 #define RESERVE_COUNT 2
53 static int reserve_count = RESERVE_COUNT;
54 static int buffer_count;
55
56 static LIST_HEAD(aa_global_buffers);
57 static DEFINE_SPINLOCK(aa_buffers_lock);
58
59 /*
60  * LSM hook functions
61  */
62
63 /*
64  * put the associated labels
65  */
66 static void apparmor_cred_free(struct cred *cred)
67 {
68         aa_put_label(cred_label(cred));
69         set_cred_label(cred, NULL);
70 }
71
72 /*
73  * allocate the apparmor part of blank credentials
74  */
75 static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp)
76 {
77         set_cred_label(cred, NULL);
78         return 0;
79 }
80
81 /*
82  * prepare new cred label for modification by prepare_cred block
83  */
84 static int apparmor_cred_prepare(struct cred *new, const struct cred *old,
85                                  gfp_t gfp)
86 {
87         set_cred_label(new, aa_get_newest_label(cred_label(old)));
88         return 0;
89 }
90
91 /*
92  * transfer the apparmor data to a blank set of creds
93  */
94 static void apparmor_cred_transfer(struct cred *new, const struct cred *old)
95 {
96         set_cred_label(new, aa_get_newest_label(cred_label(old)));
97 }
98
99 static void apparmor_task_free(struct task_struct *task)
100 {
101
102         aa_free_task_ctx(task_ctx(task));
103 }
104
105 static int apparmor_task_alloc(struct task_struct *task,
106                                unsigned long clone_flags)
107 {
108         struct aa_task_ctx *new = task_ctx(task);
109
110         aa_dup_task_ctx(new, task_ctx(current));
111
112         return 0;
113 }
114
115 static int apparmor_ptrace_access_check(struct task_struct *child,
116                                         unsigned int mode)
117 {
118         struct aa_label *tracer, *tracee;
119         int error;
120
121         tracer = __begin_current_label_crit_section();
122         tracee = aa_get_task_label(child);
123         error = aa_may_ptrace(tracer, tracee,
124                         (mode & PTRACE_MODE_READ) ? AA_PTRACE_READ
125                                                   : AA_PTRACE_TRACE);
126         aa_put_label(tracee);
127         __end_current_label_crit_section(tracer);
128
129         return error;
130 }
131
132 static int apparmor_ptrace_traceme(struct task_struct *parent)
133 {
134         struct aa_label *tracer, *tracee;
135         int error;
136
137         tracee = __begin_current_label_crit_section();
138         tracer = aa_get_task_label(parent);
139         error = aa_may_ptrace(tracer, tracee, AA_PTRACE_TRACE);
140         aa_put_label(tracer);
141         __end_current_label_crit_section(tracee);
142
143         return error;
144 }
145
146 /* Derived from security/commoncap.c:cap_capget */
147 static int apparmor_capget(struct task_struct *target, kernel_cap_t *effective,
148                            kernel_cap_t *inheritable, kernel_cap_t *permitted)
149 {
150         struct aa_label *label;
151         const struct cred *cred;
152
153         rcu_read_lock();
154         cred = __task_cred(target);
155         label = aa_get_newest_cred_label(cred);
156
157         /*
158          * cap_capget is stacked ahead of this and will
159          * initialize effective and permitted.
160          */
161         if (!unconfined(label)) {
162                 struct aa_profile *profile;
163                 struct label_it i;
164
165                 label_for_each_confined(i, label, profile) {
166                         if (COMPLAIN_MODE(profile))
167                                 continue;
168                         *effective = cap_intersect(*effective,
169                                                    profile->caps.allow);
170                         *permitted = cap_intersect(*permitted,
171                                                    profile->caps.allow);
172                 }
173         }
174         rcu_read_unlock();
175         aa_put_label(label);
176
177         return 0;
178 }
179
180 static int apparmor_capable(const struct cred *cred, struct user_namespace *ns,
181                             int cap, unsigned int opts)
182 {
183         struct aa_label *label;
184         int error = 0;
185
186         label = aa_get_newest_cred_label(cred);
187         if (!unconfined(label))
188                 error = aa_capable(label, cap, opts);
189         aa_put_label(label);
190
191         return error;
192 }
193
194 /**
195  * common_perm - basic common permission check wrapper fn for paths
196  * @op: operation being checked
197  * @path: path to check permission of  (NOT NULL)
198  * @mask: requested permissions mask
199  * @cond: conditional info for the permission request  (NOT NULL)
200  *
201  * Returns: %0 else error code if error or permission denied
202  */
203 static int common_perm(const char *op, const struct path *path, u32 mask,
204                        struct path_cond *cond)
205 {
206         struct aa_label *label;
207         int error = 0;
208
209         label = __begin_current_label_crit_section();
210         if (!unconfined(label))
211                 error = aa_path_perm(op, label, path, 0, mask, cond);
212         __end_current_label_crit_section(label);
213
214         return error;
215 }
216
217 /**
218  * common_perm_cond - common permission wrapper around inode cond
219  * @op: operation being checked
220  * @path: location to check (NOT NULL)
221  * @mask: requested permissions mask
222  *
223  * Returns: %0 else error code if error or permission denied
224  */
225 static int common_perm_cond(const char *op, const struct path *path, u32 mask)
226 {
227         struct user_namespace *mnt_userns = mnt_user_ns(path->mnt);
228         struct path_cond cond = {
229                 i_uid_into_mnt(mnt_userns, d_backing_inode(path->dentry)),
230                 d_backing_inode(path->dentry)->i_mode
231         };
232
233         if (!path_mediated_fs(path->dentry))
234                 return 0;
235
236         return common_perm(op, path, mask, &cond);
237 }
238
239 /**
240  * common_perm_dir_dentry - common permission wrapper when path is dir, dentry
241  * @op: operation being checked
242  * @dir: directory of the dentry  (NOT NULL)
243  * @dentry: dentry to check  (NOT NULL)
244  * @mask: requested permissions mask
245  * @cond: conditional info for the permission request  (NOT NULL)
246  *
247  * Returns: %0 else error code if error or permission denied
248  */
249 static int common_perm_dir_dentry(const char *op, const struct path *dir,
250                                   struct dentry *dentry, u32 mask,
251                                   struct path_cond *cond)
252 {
253         struct path path = { .mnt = dir->mnt, .dentry = dentry };
254
255         return common_perm(op, &path, mask, cond);
256 }
257
258 /**
259  * common_perm_rm - common permission wrapper for operations doing rm
260  * @op: operation being checked
261  * @dir: directory that the dentry is in  (NOT NULL)
262  * @dentry: dentry being rm'd  (NOT NULL)
263  * @mask: requested permission mask
264  *
265  * Returns: %0 else error code if error or permission denied
266  */
267 static int common_perm_rm(const char *op, const struct path *dir,
268                           struct dentry *dentry, u32 mask)
269 {
270         struct inode *inode = d_backing_inode(dentry);
271         struct user_namespace *mnt_userns = mnt_user_ns(dir->mnt);
272         struct path_cond cond = { };
273
274         if (!inode || !path_mediated_fs(dentry))
275                 return 0;
276
277         cond.uid = i_uid_into_mnt(mnt_userns, inode);
278         cond.mode = inode->i_mode;
279
280         return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
281 }
282
283 /**
284  * common_perm_create - common permission wrapper for operations doing create
285  * @op: operation being checked
286  * @dir: directory that dentry will be created in  (NOT NULL)
287  * @dentry: dentry to create   (NOT NULL)
288  * @mask: request permission mask
289  * @mode: created file mode
290  *
291  * Returns: %0 else error code if error or permission denied
292  */
293 static int common_perm_create(const char *op, const struct path *dir,
294                               struct dentry *dentry, u32 mask, umode_t mode)
295 {
296         struct path_cond cond = { current_fsuid(), mode };
297
298         if (!path_mediated_fs(dir->dentry))
299                 return 0;
300
301         return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
302 }
303
304 static int apparmor_path_unlink(const struct path *dir, struct dentry *dentry)
305 {
306         return common_perm_rm(OP_UNLINK, dir, dentry, AA_MAY_DELETE);
307 }
308
309 static int apparmor_path_mkdir(const struct path *dir, struct dentry *dentry,
310                                umode_t mode)
311 {
312         return common_perm_create(OP_MKDIR, dir, dentry, AA_MAY_CREATE,
313                                   S_IFDIR);
314 }
315
316 static int apparmor_path_rmdir(const struct path *dir, struct dentry *dentry)
317 {
318         return common_perm_rm(OP_RMDIR, dir, dentry, AA_MAY_DELETE);
319 }
320
321 static int apparmor_path_mknod(const struct path *dir, struct dentry *dentry,
322                                umode_t mode, unsigned int dev)
323 {
324         return common_perm_create(OP_MKNOD, dir, dentry, AA_MAY_CREATE, mode);
325 }
326
327 static int apparmor_path_truncate(const struct path *path)
328 {
329         return common_perm_cond(OP_TRUNC, path, MAY_WRITE | AA_MAY_SETATTR);
330 }
331
332 static int apparmor_path_symlink(const struct path *dir, struct dentry *dentry,
333                                  const char *old_name)
334 {
335         return common_perm_create(OP_SYMLINK, dir, dentry, AA_MAY_CREATE,
336                                   S_IFLNK);
337 }
338
339 static int apparmor_path_link(struct dentry *old_dentry, const struct path *new_dir,
340                               struct dentry *new_dentry)
341 {
342         struct aa_label *label;
343         int error = 0;
344
345         if (!path_mediated_fs(old_dentry))
346                 return 0;
347
348         label = begin_current_label_crit_section();
349         if (!unconfined(label))
350                 error = aa_path_link(label, old_dentry, new_dir, new_dentry);
351         end_current_label_crit_section(label);
352
353         return error;
354 }
355
356 static int apparmor_path_rename(const struct path *old_dir, struct dentry *old_dentry,
357                                 const struct path *new_dir, struct dentry *new_dentry)
358 {
359         struct aa_label *label;
360         int error = 0;
361
362         if (!path_mediated_fs(old_dentry))
363                 return 0;
364
365         label = begin_current_label_crit_section();
366         if (!unconfined(label)) {
367                 struct user_namespace *mnt_userns = mnt_user_ns(old_dir->mnt);
368                 struct path old_path = { .mnt = old_dir->mnt,
369                                          .dentry = old_dentry };
370                 struct path new_path = { .mnt = new_dir->mnt,
371                                          .dentry = new_dentry };
372                 struct path_cond cond = {
373                         i_uid_into_mnt(mnt_userns, d_backing_inode(old_dentry)),
374                         d_backing_inode(old_dentry)->i_mode
375                 };
376
377                 error = aa_path_perm(OP_RENAME_SRC, label, &old_path, 0,
378                                      MAY_READ | AA_MAY_GETATTR | MAY_WRITE |
379                                      AA_MAY_SETATTR | AA_MAY_DELETE,
380                                      &cond);
381                 if (!error)
382                         error = aa_path_perm(OP_RENAME_DEST, label, &new_path,
383                                              0, MAY_WRITE | AA_MAY_SETATTR |
384                                              AA_MAY_CREATE, &cond);
385
386         }
387         end_current_label_crit_section(label);
388
389         return error;
390 }
391
392 static int apparmor_path_chmod(const struct path *path, umode_t mode)
393 {
394         return common_perm_cond(OP_CHMOD, path, AA_MAY_CHMOD);
395 }
396
397 static int apparmor_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
398 {
399         return common_perm_cond(OP_CHOWN, path, AA_MAY_CHOWN);
400 }
401
402 static int apparmor_inode_getattr(const struct path *path)
403 {
404         return common_perm_cond(OP_GETATTR, path, AA_MAY_GETATTR);
405 }
406
407 static int apparmor_file_open(struct file *file)
408 {
409         struct aa_file_ctx *fctx = file_ctx(file);
410         struct aa_label *label;
411         int error = 0;
412
413         if (!path_mediated_fs(file->f_path.dentry))
414                 return 0;
415
416         /* If in exec, permission is handled by bprm hooks.
417          * Cache permissions granted by the previous exec check, with
418          * implicit read and executable mmap which are required to
419          * actually execute the image.
420          */
421         if (current->in_execve) {
422                 fctx->allow = MAY_EXEC | MAY_READ | AA_EXEC_MMAP;
423                 return 0;
424         }
425
426         label = aa_get_newest_cred_label(file->f_cred);
427         if (!unconfined(label)) {
428                 struct user_namespace *mnt_userns = file_mnt_user_ns(file);
429                 struct inode *inode = file_inode(file);
430                 struct path_cond cond = {
431                         i_uid_into_mnt(mnt_userns, inode),
432                         inode->i_mode
433                 };
434
435                 error = aa_path_perm(OP_OPEN, label, &file->f_path, 0,
436                                      aa_map_file_to_perms(file), &cond);
437                 /* todo cache full allowed permissions set and state */
438                 fctx->allow = aa_map_file_to_perms(file);
439         }
440         aa_put_label(label);
441
442         return error;
443 }
444
445 static int apparmor_file_alloc_security(struct file *file)
446 {
447         struct aa_file_ctx *ctx = file_ctx(file);
448         struct aa_label *label = begin_current_label_crit_section();
449
450         spin_lock_init(&ctx->lock);
451         rcu_assign_pointer(ctx->label, aa_get_label(label));
452         end_current_label_crit_section(label);
453         return 0;
454 }
455
456 static void apparmor_file_free_security(struct file *file)
457 {
458         struct aa_file_ctx *ctx = file_ctx(file);
459
460         if (ctx)
461                 aa_put_label(rcu_access_pointer(ctx->label));
462 }
463
464 static int common_file_perm(const char *op, struct file *file, u32 mask,
465                             bool in_atomic)
466 {
467         struct aa_label *label;
468         int error = 0;
469
470         /* don't reaudit files closed during inheritance */
471         if (file->f_path.dentry == aa_null.dentry)
472                 return -EACCES;
473
474         label = __begin_current_label_crit_section();
475         error = aa_file_perm(op, label, file, mask, in_atomic);
476         __end_current_label_crit_section(label);
477
478         return error;
479 }
480
481 static int apparmor_file_receive(struct file *file)
482 {
483         return common_file_perm(OP_FRECEIVE, file, aa_map_file_to_perms(file),
484                                 false);
485 }
486
487 static int apparmor_file_permission(struct file *file, int mask)
488 {
489         return common_file_perm(OP_FPERM, file, mask, false);
490 }
491
492 static int apparmor_file_lock(struct file *file, unsigned int cmd)
493 {
494         u32 mask = AA_MAY_LOCK;
495
496         if (cmd == F_WRLCK)
497                 mask |= MAY_WRITE;
498
499         return common_file_perm(OP_FLOCK, file, mask, false);
500 }
501
502 static int common_mmap(const char *op, struct file *file, unsigned long prot,
503                        unsigned long flags, bool in_atomic)
504 {
505         int mask = 0;
506
507         if (!file || !file_ctx(file))
508                 return 0;
509
510         if (prot & PROT_READ)
511                 mask |= MAY_READ;
512         /*
513          * Private mappings don't require write perms since they don't
514          * write back to the files
515          */
516         if ((prot & PROT_WRITE) && !(flags & MAP_PRIVATE))
517                 mask |= MAY_WRITE;
518         if (prot & PROT_EXEC)
519                 mask |= AA_EXEC_MMAP;
520
521         return common_file_perm(op, file, mask, in_atomic);
522 }
523
524 static int apparmor_mmap_file(struct file *file, unsigned long reqprot,
525                               unsigned long prot, unsigned long flags)
526 {
527         return common_mmap(OP_FMMAP, file, prot, flags, GFP_ATOMIC);
528 }
529
530 static int apparmor_file_mprotect(struct vm_area_struct *vma,
531                                   unsigned long reqprot, unsigned long prot)
532 {
533         return common_mmap(OP_FMPROT, vma->vm_file, prot,
534                            !(vma->vm_flags & VM_SHARED) ? MAP_PRIVATE : 0,
535                            false);
536 }
537
538 static int apparmor_sb_mount(const char *dev_name, const struct path *path,
539                              const char *type, unsigned long flags, void *data)
540 {
541         struct aa_label *label;
542         int error = 0;
543
544         /* Discard magic */
545         if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
546                 flags &= ~MS_MGC_MSK;
547
548         flags &= ~AA_MS_IGNORE_MASK;
549
550         label = __begin_current_label_crit_section();
551         if (!unconfined(label)) {
552                 if (flags & MS_REMOUNT)
553                         error = aa_remount(label, path, flags, data);
554                 else if (flags & MS_BIND)
555                         error = aa_bind_mount(label, path, dev_name, flags);
556                 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE |
557                                   MS_UNBINDABLE))
558                         error = aa_mount_change_type(label, path, flags);
559                 else if (flags & MS_MOVE)
560                         error = aa_move_mount(label, path, dev_name);
561                 else
562                         error = aa_new_mount(label, dev_name, path, type,
563                                              flags, data);
564         }
565         __end_current_label_crit_section(label);
566
567         return error;
568 }
569
570 static int apparmor_sb_umount(struct vfsmount *mnt, int flags)
571 {
572         struct aa_label *label;
573         int error = 0;
574
575         label = __begin_current_label_crit_section();
576         if (!unconfined(label))
577                 error = aa_umount(label, mnt, flags);
578         __end_current_label_crit_section(label);
579
580         return error;
581 }
582
583 static int apparmor_sb_pivotroot(const struct path *old_path,
584                                  const struct path *new_path)
585 {
586         struct aa_label *label;
587         int error = 0;
588
589         label = aa_get_current_label();
590         if (!unconfined(label))
591                 error = aa_pivotroot(label, old_path, new_path);
592         aa_put_label(label);
593
594         return error;
595 }
596
597 static int apparmor_getprocattr(struct task_struct *task, char *name,
598                                 char **value)
599 {
600         int error = -ENOENT;
601         /* released below */
602         const struct cred *cred = get_task_cred(task);
603         struct aa_task_ctx *ctx = task_ctx(current);
604         struct aa_label *label = NULL;
605
606         if (strcmp(name, "current") == 0)
607                 label = aa_get_newest_label(cred_label(cred));
608         else if (strcmp(name, "prev") == 0  && ctx->previous)
609                 label = aa_get_newest_label(ctx->previous);
610         else if (strcmp(name, "exec") == 0 && ctx->onexec)
611                 label = aa_get_newest_label(ctx->onexec);
612         else
613                 error = -EINVAL;
614
615         if (label)
616                 error = aa_getprocattr(label, value);
617
618         aa_put_label(label);
619         put_cred(cred);
620
621         return error;
622 }
623
624 static int apparmor_setprocattr(const char *name, void *value,
625                                 size_t size)
626 {
627         char *command, *largs = NULL, *args = value;
628         size_t arg_size;
629         int error;
630         DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, OP_SETPROCATTR);
631
632         if (size == 0)
633                 return -EINVAL;
634
635         /* AppArmor requires that the buffer must be null terminated atm */
636         if (args[size - 1] != '\0') {
637                 /* null terminate */
638                 largs = args = kmalloc(size + 1, GFP_KERNEL);
639                 if (!args)
640                         return -ENOMEM;
641                 memcpy(args, value, size);
642                 args[size] = '\0';
643         }
644
645         error = -EINVAL;
646         args = strim(args);
647         command = strsep(&args, " ");
648         if (!args)
649                 goto out;
650         args = skip_spaces(args);
651         if (!*args)
652                 goto out;
653
654         arg_size = size - (args - (largs ? largs : (char *) value));
655         if (strcmp(name, "current") == 0) {
656                 if (strcmp(command, "changehat") == 0) {
657                         error = aa_setprocattr_changehat(args, arg_size,
658                                                          AA_CHANGE_NOFLAGS);
659                 } else if (strcmp(command, "permhat") == 0) {
660                         error = aa_setprocattr_changehat(args, arg_size,
661                                                          AA_CHANGE_TEST);
662                 } else if (strcmp(command, "changeprofile") == 0) {
663                         error = aa_change_profile(args, AA_CHANGE_NOFLAGS);
664                 } else if (strcmp(command, "permprofile") == 0) {
665                         error = aa_change_profile(args, AA_CHANGE_TEST);
666                 } else if (strcmp(command, "stack") == 0) {
667                         error = aa_change_profile(args, AA_CHANGE_STACK);
668                 } else
669                         goto fail;
670         } else if (strcmp(name, "exec") == 0) {
671                 if (strcmp(command, "exec") == 0)
672                         error = aa_change_profile(args, AA_CHANGE_ONEXEC);
673                 else if (strcmp(command, "stack") == 0)
674                         error = aa_change_profile(args, (AA_CHANGE_ONEXEC |
675                                                          AA_CHANGE_STACK));
676                 else
677                         goto fail;
678         } else
679                 /* only support the "current" and "exec" process attributes */
680                 goto fail;
681
682         if (!error)
683                 error = size;
684 out:
685         kfree(largs);
686         return error;
687
688 fail:
689         aad(&sa)->label = begin_current_label_crit_section();
690         aad(&sa)->info = name;
691         aad(&sa)->error = error = -EINVAL;
692         aa_audit_msg(AUDIT_APPARMOR_DENIED, &sa, NULL);
693         end_current_label_crit_section(aad(&sa)->label);
694         goto out;
695 }
696
697 /**
698  * apparmor_bprm_committing_creds - do task cleanup on committing new creds
699  * @bprm: binprm for the exec  (NOT NULL)
700  */
701 static void apparmor_bprm_committing_creds(struct linux_binprm *bprm)
702 {
703         struct aa_label *label = aa_current_raw_label();
704         struct aa_label *new_label = cred_label(bprm->cred);
705
706         /* bail out if unconfined or not changing profile */
707         if ((new_label->proxy == label->proxy) ||
708             (unconfined(new_label)))
709                 return;
710
711         aa_inherit_files(bprm->cred, current->files);
712
713         current->pdeath_signal = 0;
714
715         /* reset soft limits and set hard limits for the new label */
716         __aa_transition_rlimits(label, new_label);
717 }
718
719 /**
720  * apparmor_bprm_committed_cred - do cleanup after new creds committed
721  * @bprm: binprm for the exec  (NOT NULL)
722  */
723 static void apparmor_bprm_committed_creds(struct linux_binprm *bprm)
724 {
725         /* clear out temporary/transitional state from the context */
726         aa_clear_task_ctx_trans(task_ctx(current));
727
728         return;
729 }
730
731 static void apparmor_task_getsecid(struct task_struct *p, u32 *secid)
732 {
733         struct aa_label *label = aa_get_task_label(p);
734         *secid = label->secid;
735         aa_put_label(label);
736 }
737
738 static int apparmor_task_setrlimit(struct task_struct *task,
739                 unsigned int resource, struct rlimit *new_rlim)
740 {
741         struct aa_label *label = __begin_current_label_crit_section();
742         int error = 0;
743
744         if (!unconfined(label))
745                 error = aa_task_setrlimit(label, task, resource, new_rlim);
746         __end_current_label_crit_section(label);
747
748         return error;
749 }
750
751 static int apparmor_task_kill(struct task_struct *target, struct kernel_siginfo *info,
752                               int sig, const struct cred *cred)
753 {
754         struct aa_label *cl, *tl;
755         int error;
756
757         if (cred) {
758                 /*
759                  * Dealing with USB IO specific behavior
760                  */
761                 cl = aa_get_newest_cred_label(cred);
762                 tl = aa_get_task_label(target);
763                 error = aa_may_signal(cl, tl, sig);
764                 aa_put_label(cl);
765                 aa_put_label(tl);
766                 return error;
767         }
768
769         cl = __begin_current_label_crit_section();
770         tl = aa_get_task_label(target);
771         error = aa_may_signal(cl, tl, sig);
772         aa_put_label(tl);
773         __end_current_label_crit_section(cl);
774
775         return error;
776 }
777
778 /**
779  * apparmor_sk_alloc_security - allocate and attach the sk_security field
780  */
781 static int apparmor_sk_alloc_security(struct sock *sk, int family, gfp_t flags)
782 {
783         struct aa_sk_ctx *ctx;
784
785         ctx = kzalloc(sizeof(*ctx), flags);
786         if (!ctx)
787                 return -ENOMEM;
788
789         SK_CTX(sk) = ctx;
790
791         return 0;
792 }
793
794 /**
795  * apparmor_sk_free_security - free the sk_security field
796  */
797 static void apparmor_sk_free_security(struct sock *sk)
798 {
799         struct aa_sk_ctx *ctx = SK_CTX(sk);
800
801         SK_CTX(sk) = NULL;
802         aa_put_label(ctx->label);
803         aa_put_label(ctx->peer);
804         kfree(ctx);
805 }
806
807 /**
808  * apparmor_clone_security - clone the sk_security field
809  */
810 static void apparmor_sk_clone_security(const struct sock *sk,
811                                        struct sock *newsk)
812 {
813         struct aa_sk_ctx *ctx = SK_CTX(sk);
814         struct aa_sk_ctx *new = SK_CTX(newsk);
815
816         if (new->label)
817                 aa_put_label(new->label);
818         new->label = aa_get_label(ctx->label);
819
820         if (new->peer)
821                 aa_put_label(new->peer);
822         new->peer = aa_get_label(ctx->peer);
823 }
824
825 /**
826  * apparmor_socket_create - check perms before creating a new socket
827  */
828 static int apparmor_socket_create(int family, int type, int protocol, int kern)
829 {
830         struct aa_label *label;
831         int error = 0;
832
833         AA_BUG(in_interrupt());
834
835         label = begin_current_label_crit_section();
836         if (!(kern || unconfined(label)))
837                 error = af_select(family,
838                                   create_perm(label, family, type, protocol),
839                                   aa_af_perm(label, OP_CREATE, AA_MAY_CREATE,
840                                              family, type, protocol));
841         end_current_label_crit_section(label);
842
843         return error;
844 }
845
846 /**
847  * apparmor_socket_post_create - setup the per-socket security struct
848  *
849  * Note:
850  * -   kernel sockets currently labeled unconfined but we may want to
851  *     move to a special kernel label
852  * -   socket may not have sk here if created with sock_create_lite or
853  *     sock_alloc. These should be accept cases which will be handled in
854  *     sock_graft.
855  */
856 static int apparmor_socket_post_create(struct socket *sock, int family,
857                                        int type, int protocol, int kern)
858 {
859         struct aa_label *label;
860
861         if (kern) {
862                 struct aa_ns *ns = aa_get_current_ns();
863
864                 label = aa_get_label(ns_unconfined(ns));
865                 aa_put_ns(ns);
866         } else
867                 label = aa_get_current_label();
868
869         if (sock->sk) {
870                 struct aa_sk_ctx *ctx = SK_CTX(sock->sk);
871
872                 aa_put_label(ctx->label);
873                 ctx->label = aa_get_label(label);
874         }
875         aa_put_label(label);
876
877         return 0;
878 }
879
880 /**
881  * apparmor_socket_bind - check perms before bind addr to socket
882  */
883 static int apparmor_socket_bind(struct socket *sock,
884                                 struct sockaddr *address, int addrlen)
885 {
886         AA_BUG(!sock);
887         AA_BUG(!sock->sk);
888         AA_BUG(!address);
889         AA_BUG(in_interrupt());
890
891         return af_select(sock->sk->sk_family,
892                          bind_perm(sock, address, addrlen),
893                          aa_sk_perm(OP_BIND, AA_MAY_BIND, sock->sk));
894 }
895
896 /**
897  * apparmor_socket_connect - check perms before connecting @sock to @address
898  */
899 static int apparmor_socket_connect(struct socket *sock,
900                                    struct sockaddr *address, int addrlen)
901 {
902         AA_BUG(!sock);
903         AA_BUG(!sock->sk);
904         AA_BUG(!address);
905         AA_BUG(in_interrupt());
906
907         return af_select(sock->sk->sk_family,
908                          connect_perm(sock, address, addrlen),
909                          aa_sk_perm(OP_CONNECT, AA_MAY_CONNECT, sock->sk));
910 }
911
912 /**
913  * apparmor_socket_list - check perms before allowing listen
914  */
915 static int apparmor_socket_listen(struct socket *sock, int backlog)
916 {
917         AA_BUG(!sock);
918         AA_BUG(!sock->sk);
919         AA_BUG(in_interrupt());
920
921         return af_select(sock->sk->sk_family,
922                          listen_perm(sock, backlog),
923                          aa_sk_perm(OP_LISTEN, AA_MAY_LISTEN, sock->sk));
924 }
925
926 /**
927  * apparmor_socket_accept - check perms before accepting a new connection.
928  *
929  * Note: while @newsock is created and has some information, the accept
930  *       has not been done.
931  */
932 static int apparmor_socket_accept(struct socket *sock, struct socket *newsock)
933 {
934         AA_BUG(!sock);
935         AA_BUG(!sock->sk);
936         AA_BUG(!newsock);
937         AA_BUG(in_interrupt());
938
939         return af_select(sock->sk->sk_family,
940                          accept_perm(sock, newsock),
941                          aa_sk_perm(OP_ACCEPT, AA_MAY_ACCEPT, sock->sk));
942 }
943
944 static int aa_sock_msg_perm(const char *op, u32 request, struct socket *sock,
945                             struct msghdr *msg, int size)
946 {
947         AA_BUG(!sock);
948         AA_BUG(!sock->sk);
949         AA_BUG(!msg);
950         AA_BUG(in_interrupt());
951
952         return af_select(sock->sk->sk_family,
953                          msg_perm(op, request, sock, msg, size),
954                          aa_sk_perm(op, request, sock->sk));
955 }
956
957 /**
958  * apparmor_socket_sendmsg - check perms before sending msg to another socket
959  */
960 static int apparmor_socket_sendmsg(struct socket *sock,
961                                    struct msghdr *msg, int size)
962 {
963         return aa_sock_msg_perm(OP_SENDMSG, AA_MAY_SEND, sock, msg, size);
964 }
965
966 /**
967  * apparmor_socket_recvmsg - check perms before receiving a message
968  */
969 static int apparmor_socket_recvmsg(struct socket *sock,
970                                    struct msghdr *msg, int size, int flags)
971 {
972         return aa_sock_msg_perm(OP_RECVMSG, AA_MAY_RECEIVE, sock, msg, size);
973 }
974
975 /* revaliation, get/set attr, shutdown */
976 static int aa_sock_perm(const char *op, u32 request, struct socket *sock)
977 {
978         AA_BUG(!sock);
979         AA_BUG(!sock->sk);
980         AA_BUG(in_interrupt());
981
982         return af_select(sock->sk->sk_family,
983                          sock_perm(op, request, sock),
984                          aa_sk_perm(op, request, sock->sk));
985 }
986
987 /**
988  * apparmor_socket_getsockname - check perms before getting the local address
989  */
990 static int apparmor_socket_getsockname(struct socket *sock)
991 {
992         return aa_sock_perm(OP_GETSOCKNAME, AA_MAY_GETATTR, sock);
993 }
994
995 /**
996  * apparmor_socket_getpeername - check perms before getting remote address
997  */
998 static int apparmor_socket_getpeername(struct socket *sock)
999 {
1000         return aa_sock_perm(OP_GETPEERNAME, AA_MAY_GETATTR, sock);
1001 }
1002
1003 /* revaliation, get/set attr, opt */
1004 static int aa_sock_opt_perm(const char *op, u32 request, struct socket *sock,
1005                             int level, int optname)
1006 {
1007         AA_BUG(!sock);
1008         AA_BUG(!sock->sk);
1009         AA_BUG(in_interrupt());
1010
1011         return af_select(sock->sk->sk_family,
1012                          opt_perm(op, request, sock, level, optname),
1013                          aa_sk_perm(op, request, sock->sk));
1014 }
1015
1016 /**
1017  * apparmor_getsockopt - check perms before getting socket options
1018  */
1019 static int apparmor_socket_getsockopt(struct socket *sock, int level,
1020                                       int optname)
1021 {
1022         return aa_sock_opt_perm(OP_GETSOCKOPT, AA_MAY_GETOPT, sock,
1023                                 level, optname);
1024 }
1025
1026 /**
1027  * apparmor_setsockopt - check perms before setting socket options
1028  */
1029 static int apparmor_socket_setsockopt(struct socket *sock, int level,
1030                                       int optname)
1031 {
1032         return aa_sock_opt_perm(OP_SETSOCKOPT, AA_MAY_SETOPT, sock,
1033                                 level, optname);
1034 }
1035
1036 /**
1037  * apparmor_socket_shutdown - check perms before shutting down @sock conn
1038  */
1039 static int apparmor_socket_shutdown(struct socket *sock, int how)
1040 {
1041         return aa_sock_perm(OP_SHUTDOWN, AA_MAY_SHUTDOWN, sock);
1042 }
1043
1044 #ifdef CONFIG_NETWORK_SECMARK
1045 /**
1046  * apparmor_socket_sock_recv_skb - check perms before associating skb to sk
1047  *
1048  * Note: can not sleep may be called with locks held
1049  *
1050  * dont want protocol specific in __skb_recv_datagram()
1051  * to deny an incoming connection  socket_sock_rcv_skb()
1052  */
1053 static int apparmor_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
1054 {
1055         struct aa_sk_ctx *ctx = SK_CTX(sk);
1056
1057         if (!skb->secmark)
1058                 return 0;
1059
1060         return apparmor_secmark_check(ctx->label, OP_RECVMSG, AA_MAY_RECEIVE,
1061                                       skb->secmark, sk);
1062 }
1063 #endif
1064
1065
1066 static struct aa_label *sk_peer_label(struct sock *sk)
1067 {
1068         struct aa_sk_ctx *ctx = SK_CTX(sk);
1069
1070         if (ctx->peer)
1071                 return ctx->peer;
1072
1073         return ERR_PTR(-ENOPROTOOPT);
1074 }
1075
1076 /**
1077  * apparmor_socket_getpeersec_stream - get security context of peer
1078  *
1079  * Note: for tcp only valid if using ipsec or cipso on lan
1080  */
1081 static int apparmor_socket_getpeersec_stream(struct socket *sock,
1082                                              char __user *optval,
1083                                              int __user *optlen,
1084                                              unsigned int len)
1085 {
1086         char *name;
1087         int slen, error = 0;
1088         struct aa_label *label;
1089         struct aa_label *peer;
1090
1091         label = begin_current_label_crit_section();
1092         peer = sk_peer_label(sock->sk);
1093         if (IS_ERR(peer)) {
1094                 error = PTR_ERR(peer);
1095                 goto done;
1096         }
1097         slen = aa_label_asxprint(&name, labels_ns(label), peer,
1098                                  FLAG_SHOW_MODE | FLAG_VIEW_SUBNS |
1099                                  FLAG_HIDDEN_UNCONFINED, GFP_KERNEL);
1100         /* don't include terminating \0 in slen, it breaks some apps */
1101         if (slen < 0) {
1102                 error = -ENOMEM;
1103         } else {
1104                 if (slen > len) {
1105                         error = -ERANGE;
1106                 } else if (copy_to_user(optval, name, slen)) {
1107                         error = -EFAULT;
1108                         goto out;
1109                 }
1110                 if (put_user(slen, optlen))
1111                         error = -EFAULT;
1112 out:
1113                 kfree(name);
1114
1115         }
1116
1117 done:
1118         end_current_label_crit_section(label);
1119
1120         return error;
1121 }
1122
1123 /**
1124  * apparmor_socket_getpeersec_dgram - get security label of packet
1125  * @sock: the peer socket
1126  * @skb: packet data
1127  * @secid: pointer to where to put the secid of the packet
1128  *
1129  * Sets the netlabel socket state on sk from parent
1130  */
1131 static int apparmor_socket_getpeersec_dgram(struct socket *sock,
1132                                             struct sk_buff *skb, u32 *secid)
1133
1134 {
1135         /* TODO: requires secid support */
1136         return -ENOPROTOOPT;
1137 }
1138
1139 /**
1140  * apparmor_sock_graft - Initialize newly created socket
1141  * @sk: child sock
1142  * @parent: parent socket
1143  *
1144  * Note: could set off of SOCK_CTX(parent) but need to track inode and we can
1145  *       just set sk security information off of current creating process label
1146  *       Labeling of sk for accept case - probably should be sock based
1147  *       instead of task, because of the case where an implicitly labeled
1148  *       socket is shared by different tasks.
1149  */
1150 static void apparmor_sock_graft(struct sock *sk, struct socket *parent)
1151 {
1152         struct aa_sk_ctx *ctx = SK_CTX(sk);
1153
1154         if (!ctx->label)
1155                 ctx->label = aa_get_current_label();
1156 }
1157
1158 #ifdef CONFIG_NETWORK_SECMARK
1159 static int apparmor_inet_conn_request(const struct sock *sk, struct sk_buff *skb,
1160                                       struct request_sock *req)
1161 {
1162         struct aa_sk_ctx *ctx = SK_CTX(sk);
1163
1164         if (!skb->secmark)
1165                 return 0;
1166
1167         return apparmor_secmark_check(ctx->label, OP_CONNECT, AA_MAY_CONNECT,
1168                                       skb->secmark, sk);
1169 }
1170 #endif
1171
1172 /*
1173  * The cred blob is a pointer to, not an instance of, an aa_task_ctx.
1174  */
1175 struct lsm_blob_sizes apparmor_blob_sizes __lsm_ro_after_init = {
1176         .lbs_cred = sizeof(struct aa_task_ctx *),
1177         .lbs_file = sizeof(struct aa_file_ctx),
1178         .lbs_task = sizeof(struct aa_task_ctx),
1179 };
1180
1181 static struct security_hook_list apparmor_hooks[] __lsm_ro_after_init = {
1182         LSM_HOOK_INIT(ptrace_access_check, apparmor_ptrace_access_check),
1183         LSM_HOOK_INIT(ptrace_traceme, apparmor_ptrace_traceme),
1184         LSM_HOOK_INIT(capget, apparmor_capget),
1185         LSM_HOOK_INIT(capable, apparmor_capable),
1186
1187         LSM_HOOK_INIT(sb_mount, apparmor_sb_mount),
1188         LSM_HOOK_INIT(sb_umount, apparmor_sb_umount),
1189         LSM_HOOK_INIT(sb_pivotroot, apparmor_sb_pivotroot),
1190
1191         LSM_HOOK_INIT(path_link, apparmor_path_link),
1192         LSM_HOOK_INIT(path_unlink, apparmor_path_unlink),
1193         LSM_HOOK_INIT(path_symlink, apparmor_path_symlink),
1194         LSM_HOOK_INIT(path_mkdir, apparmor_path_mkdir),
1195         LSM_HOOK_INIT(path_rmdir, apparmor_path_rmdir),
1196         LSM_HOOK_INIT(path_mknod, apparmor_path_mknod),
1197         LSM_HOOK_INIT(path_rename, apparmor_path_rename),
1198         LSM_HOOK_INIT(path_chmod, apparmor_path_chmod),
1199         LSM_HOOK_INIT(path_chown, apparmor_path_chown),
1200         LSM_HOOK_INIT(path_truncate, apparmor_path_truncate),
1201         LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr),
1202
1203         LSM_HOOK_INIT(file_open, apparmor_file_open),
1204         LSM_HOOK_INIT(file_receive, apparmor_file_receive),
1205         LSM_HOOK_INIT(file_permission, apparmor_file_permission),
1206         LSM_HOOK_INIT(file_alloc_security, apparmor_file_alloc_security),
1207         LSM_HOOK_INIT(file_free_security, apparmor_file_free_security),
1208         LSM_HOOK_INIT(mmap_file, apparmor_mmap_file),
1209         LSM_HOOK_INIT(file_mprotect, apparmor_file_mprotect),
1210         LSM_HOOK_INIT(file_lock, apparmor_file_lock),
1211
1212         LSM_HOOK_INIT(getprocattr, apparmor_getprocattr),
1213         LSM_HOOK_INIT(setprocattr, apparmor_setprocattr),
1214
1215         LSM_HOOK_INIT(sk_alloc_security, apparmor_sk_alloc_security),
1216         LSM_HOOK_INIT(sk_free_security, apparmor_sk_free_security),
1217         LSM_HOOK_INIT(sk_clone_security, apparmor_sk_clone_security),
1218
1219         LSM_HOOK_INIT(socket_create, apparmor_socket_create),
1220         LSM_HOOK_INIT(socket_post_create, apparmor_socket_post_create),
1221         LSM_HOOK_INIT(socket_bind, apparmor_socket_bind),
1222         LSM_HOOK_INIT(socket_connect, apparmor_socket_connect),
1223         LSM_HOOK_INIT(socket_listen, apparmor_socket_listen),
1224         LSM_HOOK_INIT(socket_accept, apparmor_socket_accept),
1225         LSM_HOOK_INIT(socket_sendmsg, apparmor_socket_sendmsg),
1226         LSM_HOOK_INIT(socket_recvmsg, apparmor_socket_recvmsg),
1227         LSM_HOOK_INIT(socket_getsockname, apparmor_socket_getsockname),
1228         LSM_HOOK_INIT(socket_getpeername, apparmor_socket_getpeername),
1229         LSM_HOOK_INIT(socket_getsockopt, apparmor_socket_getsockopt),
1230         LSM_HOOK_INIT(socket_setsockopt, apparmor_socket_setsockopt),
1231         LSM_HOOK_INIT(socket_shutdown, apparmor_socket_shutdown),
1232 #ifdef CONFIG_NETWORK_SECMARK
1233         LSM_HOOK_INIT(socket_sock_rcv_skb, apparmor_socket_sock_rcv_skb),
1234 #endif
1235         LSM_HOOK_INIT(socket_getpeersec_stream,
1236                       apparmor_socket_getpeersec_stream),
1237         LSM_HOOK_INIT(socket_getpeersec_dgram,
1238                       apparmor_socket_getpeersec_dgram),
1239         LSM_HOOK_INIT(sock_graft, apparmor_sock_graft),
1240 #ifdef CONFIG_NETWORK_SECMARK
1241         LSM_HOOK_INIT(inet_conn_request, apparmor_inet_conn_request),
1242 #endif
1243
1244         LSM_HOOK_INIT(cred_alloc_blank, apparmor_cred_alloc_blank),
1245         LSM_HOOK_INIT(cred_free, apparmor_cred_free),
1246         LSM_HOOK_INIT(cred_prepare, apparmor_cred_prepare),
1247         LSM_HOOK_INIT(cred_transfer, apparmor_cred_transfer),
1248
1249         LSM_HOOK_INIT(bprm_creds_for_exec, apparmor_bprm_creds_for_exec),
1250         LSM_HOOK_INIT(bprm_committing_creds, apparmor_bprm_committing_creds),
1251         LSM_HOOK_INIT(bprm_committed_creds, apparmor_bprm_committed_creds),
1252
1253         LSM_HOOK_INIT(task_free, apparmor_task_free),
1254         LSM_HOOK_INIT(task_alloc, apparmor_task_alloc),
1255         LSM_HOOK_INIT(task_getsecid, apparmor_task_getsecid),
1256         LSM_HOOK_INIT(task_setrlimit, apparmor_task_setrlimit),
1257         LSM_HOOK_INIT(task_kill, apparmor_task_kill),
1258
1259 #ifdef CONFIG_AUDIT
1260         LSM_HOOK_INIT(audit_rule_init, aa_audit_rule_init),
1261         LSM_HOOK_INIT(audit_rule_known, aa_audit_rule_known),
1262         LSM_HOOK_INIT(audit_rule_match, aa_audit_rule_match),
1263         LSM_HOOK_INIT(audit_rule_free, aa_audit_rule_free),
1264 #endif
1265
1266         LSM_HOOK_INIT(secid_to_secctx, apparmor_secid_to_secctx),
1267         LSM_HOOK_INIT(secctx_to_secid, apparmor_secctx_to_secid),
1268         LSM_HOOK_INIT(release_secctx, apparmor_release_secctx),
1269 };
1270
1271 /*
1272  * AppArmor sysfs module parameters
1273  */
1274
1275 static int param_set_aabool(const char *val, const struct kernel_param *kp);
1276 static int param_get_aabool(char *buffer, const struct kernel_param *kp);
1277 #define param_check_aabool param_check_bool
1278 static const struct kernel_param_ops param_ops_aabool = {
1279         .flags = KERNEL_PARAM_OPS_FL_NOARG,
1280         .set = param_set_aabool,
1281         .get = param_get_aabool
1282 };
1283
1284 static int param_set_aauint(const char *val, const struct kernel_param *kp);
1285 static int param_get_aauint(char *buffer, const struct kernel_param *kp);
1286 #define param_check_aauint param_check_uint
1287 static const struct kernel_param_ops param_ops_aauint = {
1288         .set = param_set_aauint,
1289         .get = param_get_aauint
1290 };
1291
1292 static int param_set_aacompressionlevel(const char *val,
1293                                         const struct kernel_param *kp);
1294 static int param_get_aacompressionlevel(char *buffer,
1295                                         const struct kernel_param *kp);
1296 #define param_check_aacompressionlevel param_check_int
1297 static const struct kernel_param_ops param_ops_aacompressionlevel = {
1298         .set = param_set_aacompressionlevel,
1299         .get = param_get_aacompressionlevel
1300 };
1301
1302 static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp);
1303 static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp);
1304 #define param_check_aalockpolicy param_check_bool
1305 static const struct kernel_param_ops param_ops_aalockpolicy = {
1306         .flags = KERNEL_PARAM_OPS_FL_NOARG,
1307         .set = param_set_aalockpolicy,
1308         .get = param_get_aalockpolicy
1309 };
1310
1311 static int param_set_audit(const char *val, const struct kernel_param *kp);
1312 static int param_get_audit(char *buffer, const struct kernel_param *kp);
1313
1314 static int param_set_mode(const char *val, const struct kernel_param *kp);
1315 static int param_get_mode(char *buffer, const struct kernel_param *kp);
1316
1317 /* Flag values, also controllable via /sys/module/apparmor/parameters
1318  * We define special types as we want to do additional mediation.
1319  */
1320
1321 /* AppArmor global enforcement switch - complain, enforce, kill */
1322 enum profile_mode aa_g_profile_mode = APPARMOR_ENFORCE;
1323 module_param_call(mode, param_set_mode, param_get_mode,
1324                   &aa_g_profile_mode, S_IRUSR | S_IWUSR);
1325
1326 /* whether policy verification hashing is enabled */
1327 bool aa_g_hash_policy = IS_ENABLED(CONFIG_SECURITY_APPARMOR_HASH_DEFAULT);
1328 #ifdef CONFIG_SECURITY_APPARMOR_HASH
1329 module_param_named(hash_policy, aa_g_hash_policy, aabool, S_IRUSR | S_IWUSR);
1330 #endif
1331
1332 /* policy loaddata compression level */
1333 int aa_g_rawdata_compression_level = Z_DEFAULT_COMPRESSION;
1334 module_param_named(rawdata_compression_level, aa_g_rawdata_compression_level,
1335                    aacompressionlevel, 0400);
1336
1337 /* Debug mode */
1338 bool aa_g_debug = IS_ENABLED(CONFIG_SECURITY_APPARMOR_DEBUG_MESSAGES);
1339 module_param_named(debug, aa_g_debug, aabool, S_IRUSR | S_IWUSR);
1340
1341 /* Audit mode */
1342 enum audit_mode aa_g_audit;
1343 module_param_call(audit, param_set_audit, param_get_audit,
1344                   &aa_g_audit, S_IRUSR | S_IWUSR);
1345
1346 /* Determines if audit header is included in audited messages.  This
1347  * provides more context if the audit daemon is not running
1348  */
1349 bool aa_g_audit_header = true;
1350 module_param_named(audit_header, aa_g_audit_header, aabool,
1351                    S_IRUSR | S_IWUSR);
1352
1353 /* lock out loading/removal of policy
1354  * TODO: add in at boot loading of policy, which is the only way to
1355  *       load policy, if lock_policy is set
1356  */
1357 bool aa_g_lock_policy;
1358 module_param_named(lock_policy, aa_g_lock_policy, aalockpolicy,
1359                    S_IRUSR | S_IWUSR);
1360
1361 /* Syscall logging mode */
1362 bool aa_g_logsyscall;
1363 module_param_named(logsyscall, aa_g_logsyscall, aabool, S_IRUSR | S_IWUSR);
1364
1365 /* Maximum pathname length before accesses will start getting rejected */
1366 unsigned int aa_g_path_max = 2 * PATH_MAX;
1367 module_param_named(path_max, aa_g_path_max, aauint, S_IRUSR);
1368
1369 /* Determines how paranoid loading of policy is and how much verification
1370  * on the loaded policy is done.
1371  * DEPRECATED: read only as strict checking of load is always done now
1372  * that none root users (user namespaces) can load policy.
1373  */
1374 bool aa_g_paranoid_load = true;
1375 module_param_named(paranoid_load, aa_g_paranoid_load, aabool, S_IRUGO);
1376
1377 static int param_get_aaintbool(char *buffer, const struct kernel_param *kp);
1378 static int param_set_aaintbool(const char *val, const struct kernel_param *kp);
1379 #define param_check_aaintbool param_check_int
1380 static const struct kernel_param_ops param_ops_aaintbool = {
1381         .set = param_set_aaintbool,
1382         .get = param_get_aaintbool
1383 };
1384 /* Boot time disable flag */
1385 static int apparmor_enabled __lsm_ro_after_init = 1;
1386 module_param_named(enabled, apparmor_enabled, aaintbool, 0444);
1387
1388 static int __init apparmor_enabled_setup(char *str)
1389 {
1390         unsigned long enabled;
1391         int error = kstrtoul(str, 0, &enabled);
1392         if (!error)
1393                 apparmor_enabled = enabled ? 1 : 0;
1394         return 1;
1395 }
1396
1397 __setup("apparmor=", apparmor_enabled_setup);
1398
1399 /* set global flag turning off the ability to load policy */
1400 static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp)
1401 {
1402         if (!apparmor_enabled)
1403                 return -EINVAL;
1404         if (apparmor_initialized && !policy_admin_capable(NULL))
1405                 return -EPERM;
1406         return param_set_bool(val, kp);
1407 }
1408
1409 static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp)
1410 {
1411         if (!apparmor_enabled)
1412                 return -EINVAL;
1413         if (apparmor_initialized && !policy_view_capable(NULL))
1414                 return -EPERM;
1415         return param_get_bool(buffer, kp);
1416 }
1417
1418 static int param_set_aabool(const char *val, const struct kernel_param *kp)
1419 {
1420         if (!apparmor_enabled)
1421                 return -EINVAL;
1422         if (apparmor_initialized && !policy_admin_capable(NULL))
1423                 return -EPERM;
1424         return param_set_bool(val, kp);
1425 }
1426
1427 static int param_get_aabool(char *buffer, const struct kernel_param *kp)
1428 {
1429         if (!apparmor_enabled)
1430                 return -EINVAL;
1431         if (apparmor_initialized && !policy_view_capable(NULL))
1432                 return -EPERM;
1433         return param_get_bool(buffer, kp);
1434 }
1435
1436 static int param_set_aauint(const char *val, const struct kernel_param *kp)
1437 {
1438         int error;
1439
1440         if (!apparmor_enabled)
1441                 return -EINVAL;
1442         /* file is ro but enforce 2nd line check */
1443         if (apparmor_initialized)
1444                 return -EPERM;
1445
1446         error = param_set_uint(val, kp);
1447         aa_g_path_max = max_t(uint32_t, aa_g_path_max, sizeof(union aa_buffer));
1448         pr_info("AppArmor: buffer size set to %d bytes\n", aa_g_path_max);
1449
1450         return error;
1451 }
1452
1453 static int param_get_aauint(char *buffer, const struct kernel_param *kp)
1454 {
1455         if (!apparmor_enabled)
1456                 return -EINVAL;
1457         if (apparmor_initialized && !policy_view_capable(NULL))
1458                 return -EPERM;
1459         return param_get_uint(buffer, kp);
1460 }
1461
1462 /* Can only be set before AppArmor is initialized (i.e. on boot cmdline). */
1463 static int param_set_aaintbool(const char *val, const struct kernel_param *kp)
1464 {
1465         struct kernel_param kp_local;
1466         bool value;
1467         int error;
1468
1469         if (apparmor_initialized)
1470                 return -EPERM;
1471
1472         /* Create local copy, with arg pointing to bool type. */
1473         value = !!*((int *)kp->arg);
1474         memcpy(&kp_local, kp, sizeof(kp_local));
1475         kp_local.arg = &value;
1476
1477         error = param_set_bool(val, &kp_local);
1478         if (!error)
1479                 *((int *)kp->arg) = *((bool *)kp_local.arg);
1480         return error;
1481 }
1482
1483 /*
1484  * To avoid changing /sys/module/apparmor/parameters/enabled from Y/N to
1485  * 1/0, this converts the "int that is actually bool" back to bool for
1486  * display in the /sys filesystem, while keeping it "int" for the LSM
1487  * infrastructure.
1488  */
1489 static int param_get_aaintbool(char *buffer, const struct kernel_param *kp)
1490 {
1491         struct kernel_param kp_local;
1492         bool value;
1493
1494         /* Create local copy, with arg pointing to bool type. */
1495         value = !!*((int *)kp->arg);
1496         memcpy(&kp_local, kp, sizeof(kp_local));
1497         kp_local.arg = &value;
1498
1499         return param_get_bool(buffer, &kp_local);
1500 }
1501
1502 static int param_set_aacompressionlevel(const char *val,
1503                                         const struct kernel_param *kp)
1504 {
1505         int error;
1506
1507         if (!apparmor_enabled)
1508                 return -EINVAL;
1509         if (apparmor_initialized)
1510                 return -EPERM;
1511
1512         error = param_set_int(val, kp);
1513
1514         aa_g_rawdata_compression_level = clamp(aa_g_rawdata_compression_level,
1515                                                Z_NO_COMPRESSION,
1516                                                Z_BEST_COMPRESSION);
1517         pr_info("AppArmor: policy rawdata compression level set to %u\n",
1518                 aa_g_rawdata_compression_level);
1519
1520         return error;
1521 }
1522
1523 static int param_get_aacompressionlevel(char *buffer,
1524                                         const struct kernel_param *kp)
1525 {
1526         if (!apparmor_enabled)
1527                 return -EINVAL;
1528         if (apparmor_initialized && !policy_view_capable(NULL))
1529                 return -EPERM;
1530         return param_get_int(buffer, kp);
1531 }
1532
1533 static int param_get_audit(char *buffer, const struct kernel_param *kp)
1534 {
1535         if (!apparmor_enabled)
1536                 return -EINVAL;
1537         if (apparmor_initialized && !policy_view_capable(NULL))
1538                 return -EPERM;
1539         return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]);
1540 }
1541
1542 static int param_set_audit(const char *val, const struct kernel_param *kp)
1543 {
1544         int i;
1545
1546         if (!apparmor_enabled)
1547                 return -EINVAL;
1548         if (!val)
1549                 return -EINVAL;
1550         if (apparmor_initialized && !policy_admin_capable(NULL))
1551                 return -EPERM;
1552
1553         i = match_string(audit_mode_names, AUDIT_MAX_INDEX, val);
1554         if (i < 0)
1555                 return -EINVAL;
1556
1557         aa_g_audit = i;
1558         return 0;
1559 }
1560
1561 static int param_get_mode(char *buffer, const struct kernel_param *kp)
1562 {
1563         if (!apparmor_enabled)
1564                 return -EINVAL;
1565         if (apparmor_initialized && !policy_view_capable(NULL))
1566                 return -EPERM;
1567
1568         return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]);
1569 }
1570
1571 static int param_set_mode(const char *val, const struct kernel_param *kp)
1572 {
1573         int i;
1574
1575         if (!apparmor_enabled)
1576                 return -EINVAL;
1577         if (!val)
1578                 return -EINVAL;
1579         if (apparmor_initialized && !policy_admin_capable(NULL))
1580                 return -EPERM;
1581
1582         i = match_string(aa_profile_mode_names, APPARMOR_MODE_NAMES_MAX_INDEX,
1583                          val);
1584         if (i < 0)
1585                 return -EINVAL;
1586
1587         aa_g_profile_mode = i;
1588         return 0;
1589 }
1590
1591 char *aa_get_buffer(bool in_atomic)
1592 {
1593         union aa_buffer *aa_buf;
1594         bool try_again = true;
1595         gfp_t flags = (GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN);
1596
1597 retry:
1598         spin_lock(&aa_buffers_lock);
1599         if (buffer_count > reserve_count ||
1600             (in_atomic && !list_empty(&aa_global_buffers))) {
1601                 aa_buf = list_first_entry(&aa_global_buffers, union aa_buffer,
1602                                           list);
1603                 list_del(&aa_buf->list);
1604                 buffer_count--;
1605                 spin_unlock(&aa_buffers_lock);
1606                 return &aa_buf->buffer[0];
1607         }
1608         if (in_atomic) {
1609                 /*
1610                  * out of reserve buffers and in atomic context so increase
1611                  * how many buffers to keep in reserve
1612                  */
1613                 reserve_count++;
1614                 flags = GFP_ATOMIC;
1615         }
1616         spin_unlock(&aa_buffers_lock);
1617
1618         if (!in_atomic)
1619                 might_sleep();
1620         aa_buf = kmalloc(aa_g_path_max, flags);
1621         if (!aa_buf) {
1622                 if (try_again) {
1623                         try_again = false;
1624                         goto retry;
1625                 }
1626                 pr_warn_once("AppArmor: Failed to allocate a memory buffer.\n");
1627                 return NULL;
1628         }
1629         return &aa_buf->buffer[0];
1630 }
1631
1632 void aa_put_buffer(char *buf)
1633 {
1634         union aa_buffer *aa_buf;
1635
1636         if (!buf)
1637                 return;
1638         aa_buf = container_of(buf, union aa_buffer, buffer[0]);
1639
1640         spin_lock(&aa_buffers_lock);
1641         list_add(&aa_buf->list, &aa_global_buffers);
1642         buffer_count++;
1643         spin_unlock(&aa_buffers_lock);
1644 }
1645
1646 /*
1647  * AppArmor init functions
1648  */
1649
1650 /**
1651  * set_init_ctx - set a task context and profile on the first task.
1652  *
1653  * TODO: allow setting an alternate profile than unconfined
1654  */
1655 static int __init set_init_ctx(void)
1656 {
1657         struct cred *cred = (__force struct cred *)current->real_cred;
1658
1659         set_cred_label(cred, aa_get_label(ns_unconfined(root_ns)));
1660
1661         return 0;
1662 }
1663
1664 static void destroy_buffers(void)
1665 {
1666         union aa_buffer *aa_buf;
1667
1668         spin_lock(&aa_buffers_lock);
1669         while (!list_empty(&aa_global_buffers)) {
1670                 aa_buf = list_first_entry(&aa_global_buffers, union aa_buffer,
1671                                          list);
1672                 list_del(&aa_buf->list);
1673                 spin_unlock(&aa_buffers_lock);
1674                 kfree(aa_buf);
1675                 spin_lock(&aa_buffers_lock);
1676         }
1677         spin_unlock(&aa_buffers_lock);
1678 }
1679
1680 static int __init alloc_buffers(void)
1681 {
1682         union aa_buffer *aa_buf;
1683         int i, num;
1684
1685         /*
1686          * A function may require two buffers at once. Usually the buffers are
1687          * used for a short period of time and are shared. On UP kernel buffers
1688          * two should be enough, with more CPUs it is possible that more
1689          * buffers will be used simultaneously. The preallocated pool may grow.
1690          * This preallocation has also the side-effect that AppArmor will be
1691          * disabled early at boot if aa_g_path_max is extremly high.
1692          */
1693         if (num_online_cpus() > 1)
1694                 num = 4 + RESERVE_COUNT;
1695         else
1696                 num = 2 + RESERVE_COUNT;
1697
1698         for (i = 0; i < num; i++) {
1699
1700                 aa_buf = kmalloc(aa_g_path_max, GFP_KERNEL |
1701                                  __GFP_RETRY_MAYFAIL | __GFP_NOWARN);
1702                 if (!aa_buf) {
1703                         destroy_buffers();
1704                         return -ENOMEM;
1705                 }
1706                 aa_put_buffer(&aa_buf->buffer[0]);
1707         }
1708         return 0;
1709 }
1710
1711 #ifdef CONFIG_SYSCTL
1712 static int apparmor_dointvec(struct ctl_table *table, int write,
1713                              void *buffer, size_t *lenp, loff_t *ppos)
1714 {
1715         if (!policy_admin_capable(NULL))
1716                 return -EPERM;
1717         if (!apparmor_enabled)
1718                 return -EINVAL;
1719
1720         return proc_dointvec(table, write, buffer, lenp, ppos);
1721 }
1722
1723 static struct ctl_path apparmor_sysctl_path[] = {
1724         { .procname = "kernel", },
1725         { }
1726 };
1727
1728 static struct ctl_table apparmor_sysctl_table[] = {
1729         {
1730                 .procname       = "unprivileged_userns_apparmor_policy",
1731                 .data           = &unprivileged_userns_apparmor_policy,
1732                 .maxlen         = sizeof(int),
1733                 .mode           = 0600,
1734                 .proc_handler   = apparmor_dointvec,
1735         },
1736         { }
1737 };
1738
1739 static int __init apparmor_init_sysctl(void)
1740 {
1741         return register_sysctl_paths(apparmor_sysctl_path,
1742                                      apparmor_sysctl_table) ? 0 : -ENOMEM;
1743 }
1744 #else
1745 static inline int apparmor_init_sysctl(void)
1746 {
1747         return 0;
1748 }
1749 #endif /* CONFIG_SYSCTL */
1750
1751 #if defined(CONFIG_NETFILTER) && defined(CONFIG_NETWORK_SECMARK)
1752 static unsigned int apparmor_ip_postroute(void *priv,
1753                                           struct sk_buff *skb,
1754                                           const struct nf_hook_state *state)
1755 {
1756         struct aa_sk_ctx *ctx;
1757         struct sock *sk;
1758
1759         if (!skb->secmark)
1760                 return NF_ACCEPT;
1761
1762         sk = skb_to_full_sk(skb);
1763         if (sk == NULL)
1764                 return NF_ACCEPT;
1765
1766         ctx = SK_CTX(sk);
1767         if (!apparmor_secmark_check(ctx->label, OP_SENDMSG, AA_MAY_SEND,
1768                                     skb->secmark, sk))
1769                 return NF_ACCEPT;
1770
1771         return NF_DROP_ERR(-ECONNREFUSED);
1772
1773 }
1774
1775 static unsigned int apparmor_ipv4_postroute(void *priv,
1776                                             struct sk_buff *skb,
1777                                             const struct nf_hook_state *state)
1778 {
1779         return apparmor_ip_postroute(priv, skb, state);
1780 }
1781
1782 #if IS_ENABLED(CONFIG_IPV6)
1783 static unsigned int apparmor_ipv6_postroute(void *priv,
1784                                             struct sk_buff *skb,
1785                                             const struct nf_hook_state *state)
1786 {
1787         return apparmor_ip_postroute(priv, skb, state);
1788 }
1789 #endif
1790
1791 static const struct nf_hook_ops apparmor_nf_ops[] = {
1792         {
1793                 .hook =         apparmor_ipv4_postroute,
1794                 .pf =           NFPROTO_IPV4,
1795                 .hooknum =      NF_INET_POST_ROUTING,
1796                 .priority =     NF_IP_PRI_SELINUX_FIRST,
1797         },
1798 #if IS_ENABLED(CONFIG_IPV6)
1799         {
1800                 .hook =         apparmor_ipv6_postroute,
1801                 .pf =           NFPROTO_IPV6,
1802                 .hooknum =      NF_INET_POST_ROUTING,
1803                 .priority =     NF_IP6_PRI_SELINUX_FIRST,
1804         },
1805 #endif
1806 };
1807
1808 static int __net_init apparmor_nf_register(struct net *net)
1809 {
1810         int ret;
1811
1812         ret = nf_register_net_hooks(net, apparmor_nf_ops,
1813                                     ARRAY_SIZE(apparmor_nf_ops));
1814         return ret;
1815 }
1816
1817 static void __net_exit apparmor_nf_unregister(struct net *net)
1818 {
1819         nf_unregister_net_hooks(net, apparmor_nf_ops,
1820                                 ARRAY_SIZE(apparmor_nf_ops));
1821 }
1822
1823 static struct pernet_operations apparmor_net_ops = {
1824         .init = apparmor_nf_register,
1825         .exit = apparmor_nf_unregister,
1826 };
1827
1828 static int __init apparmor_nf_ip_init(void)
1829 {
1830         int err;
1831
1832         if (!apparmor_enabled)
1833                 return 0;
1834
1835         err = register_pernet_subsys(&apparmor_net_ops);
1836         if (err)
1837                 panic("Apparmor: register_pernet_subsys: error %d\n", err);
1838
1839         return 0;
1840 }
1841 __initcall(apparmor_nf_ip_init);
1842 #endif
1843
1844 static int __init apparmor_init(void)
1845 {
1846         int error;
1847
1848         aa_secids_init();
1849
1850         error = aa_setup_dfa_engine();
1851         if (error) {
1852                 AA_ERROR("Unable to setup dfa engine\n");
1853                 goto alloc_out;
1854         }
1855
1856         error = aa_alloc_root_ns();
1857         if (error) {
1858                 AA_ERROR("Unable to allocate default profile namespace\n");
1859                 goto alloc_out;
1860         }
1861
1862         error = apparmor_init_sysctl();
1863         if (error) {
1864                 AA_ERROR("Unable to register sysctls\n");
1865                 goto alloc_out;
1866
1867         }
1868
1869         error = alloc_buffers();
1870         if (error) {
1871                 AA_ERROR("Unable to allocate work buffers\n");
1872                 goto alloc_out;
1873         }
1874
1875         error = set_init_ctx();
1876         if (error) {
1877                 AA_ERROR("Failed to set context on init task\n");
1878                 aa_free_root_ns();
1879                 goto buffers_out;
1880         }
1881         security_add_hooks(apparmor_hooks, ARRAY_SIZE(apparmor_hooks),
1882                                 "apparmor");
1883
1884         /* Report that AppArmor successfully initialized */
1885         apparmor_initialized = 1;
1886         if (aa_g_profile_mode == APPARMOR_COMPLAIN)
1887                 aa_info_message("AppArmor initialized: complain mode enabled");
1888         else if (aa_g_profile_mode == APPARMOR_KILL)
1889                 aa_info_message("AppArmor initialized: kill mode enabled");
1890         else
1891                 aa_info_message("AppArmor initialized");
1892
1893         return error;
1894
1895 buffers_out:
1896         destroy_buffers();
1897 alloc_out:
1898         aa_destroy_aafs();
1899         aa_teardown_dfa_engine();
1900
1901         apparmor_enabled = false;
1902         return error;
1903 }
1904
1905 DEFINE_LSM(apparmor) = {
1906         .name = "apparmor",
1907         .flags = LSM_FLAG_LEGACY_MAJOR | LSM_FLAG_EXCLUSIVE,
1908         .enabled = &apparmor_enabled,
1909         .blobs = &apparmor_blob_sizes,
1910         .init = apparmor_init,
1911 };