summaryrefslogtreecommitdiff
path: root/usr/src/cmd/modload/modload.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/cmd/modload/modload.c')
-rw-r--r--usr/src/cmd/modload/modload.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/usr/src/cmd/modload/modload.c b/usr/src/cmd/modload/modload.c
index b0147570bc..2d528b3759 100644
--- a/usr/src/cmd/modload/modload.c
+++ b/usr/src/cmd/modload/modload.c
@@ -2,9 +2,8 @@
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
- * Common Development and Distribution License, Version 1.0 only
- * (the "License"). You may not use this file except in compliance
- * with the License.
+ * Common Development and Distribution License (the "License").
+ * You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
@@ -20,12 +19,10 @@
* CDDL HEADER END
*/
/*
- * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
+ * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/param.h>
@@ -37,6 +34,7 @@
#include <string.h>
#include <fcntl.h>
#include <errno.h>
+#include <zone.h>
void l_exec_userfile(char *execfile, int id, char **envp);
void l_usage();
@@ -75,6 +73,11 @@ main(int argc, char *argv[], char *envp[])
l_usage();
}
}
+
+ if (getzoneid() != GLOBAL_ZONEID) {
+ fatal("modload can only be run from the global zone\n");
+ }
+
modpath = argv[optind];
if (modpath == NULL) {