#define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #define pr_err(fmt, ...) \ ({ \ fprintf(stderr, "%s:%d:" fmt ": %m\n", \ __func__, __LINE__, ##__VA_ARGS__); \ 1; \ }) #define NSIO 0xb7 #define NS_GET_USERNS _IO(NSIO, 0x1) #define NS_GET_PARENT _IO(NSIO, 0x2) #define __stack_aligned__ __attribute__((aligned(16))) struct cr_clone_arg { char stack[128] __stack_aligned__; char stack_ptr[0]; }; static int child(void *args) { prctl(PR_SET_PDEATHSIG, SIGKILL); while (1) sleep(1); exit(0); } int main(int argc, char *argv[]) { char *ns_strs[] = {"pid", "user"}; char path[] = "/proc/0123456789/ns/pid"; struct cr_clone_arg ca; struct stat st1, st2; int ns, pns, i; pid_t pid; pid = clone(child, ca.stack_ptr, CLONE_NEWUSER | CLONE_NEWPID | SIGCHLD, NULL); if (pid < 0) return pr_err("clone"); for (i = 0; i < 2; i++) { snprintf(path, sizeof(path), "/proc/%d/ns/%s", pid, ns_strs[i]); ns = open(path, O_RDONLY); if (ns < 0) return pr_err("Unable to open %s", path); pns = ioctl(ns, NS_GET_PARENT); if (pns < 0) return pr_err("Unable to get a parent pidns"); snprintf(path, sizeof(path), "/proc/self/ns/%s", ns_strs[i]); if (stat(path, &st2)) return pr_err("Unable to stat %s", path); if (fstat(pns, &st1)) return pr_err("Unable to stat the parent pidns"); if (st1.st_ino != st2.st_ino) return pr_err("NS_GET_PARENT returned a wrong namespace"); if (ioctl(pns, NS_GET_PARENT) >= 0 || errno != EPERM) return pr_err("Don't get EPERM");; } kill(pid, SIGKILL); wait(NULL); return 0; } git.cgi/linux/net-next.git/tree/sound/firewire/digi00x?id=11e3b725cfc282efe9d4a354153e99d86a16af08'>treecommitdiff
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2017-01-17 13:46:29 +0000
committerHerbert Xu <herbert@gondor.apana.org.au>2017-01-23 22:41:33 +0800
commit11e3b725cfc282efe9d4a354153e99d86a16af08 (patch)
tree8b5b9e0e1bcae1ab98ee652ffb7b13b05c209bd6 /sound/firewire/digi00x
parentd6040764adcb5cb6de1489422411d701c158bb69 (diff)
crypto: arm64/aes-blk - honour iv_out requirement in CBC and CTR modes
Update the ARMv8 Crypto Extensions and the plain NEON AES implementations in CBC and CTR modes to return the next IV back to the skcipher API client. This is necessary for chaining to work correctly. Note that for CTR, this is only done if the request is a round multiple of the block size, since otherwise, chaining is impossible anyway. Cc: <stable@vger.kernel.org> # v3.16+ Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'sound/firewire/digi00x')