apparmor: Fix decompression of rawdata for read back to userspace
authorJohn Johansen <john.johansen@canonical.com>
Thu, 29 Sep 2022 13:48:10 +0000 (06:48 -0700)
committerJohn Johansen <john.johansen@canonical.com>
Mon, 3 Oct 2022 21:49:04 +0000 (14:49 -0700)
The rawdata readback has a few of problems. First if compression is
enabled when the data is read then the compressed data is read out
instead decompressing the data. Second if compression of the data
fails, the code does not handle holding onto the raw_data in
uncompressed form. Third if the compression is enabled/disabled after
the rawdata was loaded, the check against the global control of
whether to use compression does not reflect what was already done to
the data.

Fix these by always storing the compressed size, along with the
original data size even if compression fails or is not used. And use
this to detect whether the rawdata is actually compressed.

Fixes: 52ccc20c652b ("apparmor: use zstd compression for profile data")
Signed-off-by: John Johansen <john.johansen@canonical.com>
Acked-by: Jon Tourville <jon.tourville@canonical.com>
security/apparmor/apparmorfs.c
security/apparmor/policy_unpack.c

index 2c138309ad665981f91f9a23dc38475b40b6799f..424b2c1e586d501981dc2ee09aa213a5df4b2005 100644 (file)
@@ -1315,7 +1315,7 @@ SEQ_RAWDATA_FOPS(compressed_size);
 static int decompress_zstd(char *src, size_t slen, char *dst, size_t dlen)
 {
 #ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY
-       if (aa_g_rawdata_compression_level == 0) {
+       if (slen < dlen) {
                const size_t wksp_len = zstd_dctx_workspace_bound();
                zstd_dctx *ctx;
                void *wksp;
index 6deaeecb76feb013118de036487e06f82c28a016..45c9dfdc8e0de84346d8131f799e40af07d81a71 100644 (file)
@@ -1294,7 +1294,7 @@ static int compress_zstd(const char *src, size_t slen, char **dst, size_t *dlen)
        }
 
        out_len = zstd_compress_cctx(ctx, out, out_len, src, slen, &params);
-       if (zstd_is_error(out_len)) {
+       if (zstd_is_error(out_len) || out_len >= slen) {
                ret = -EINVAL;
                goto cleanup;
        }
@@ -1348,9 +1348,10 @@ static int compress_loaddata(struct aa_loaddata *data)
                void *udata = data->data;
                int error = compress_zstd(udata, data->size, &data->data,
                                          &data->compressed_size);
-               if (error)
+               if (error) {
+                       data->compressed_size = data->size;
                        return error;
-
+               }
                if (udata != data->data)
                        kvfree(udata);
        } else