Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../.././../../../usr/man/man9f/copyin.9f
Real path: /usr/share/man/man9f/copyin.9f
Zurück
'\" te .\" Copyright (c) 1989, AT&T. All rights reserved. .\" Portions Copyright (c) 2000, 2020, Oracle and/or its affiliates. .TH copyin 9F "30 Sep 2015" "Oracle Solaris 11.4" "Kernel Functions" .SH NAME copyin \- copy data from a user program to a driver buffer .SH SYNOPSIS .LP .nf #include <sys/types.h> #include <sys/ddi.h> \fBint\fR \fBcopyin\fR(\fBconst void *\fR\fIuserbuf\fR, \fBvoid *\fR\fIdriverbuf\fR, \fBsize_t\fR \fIcn\fR); .fi .SH INTERFACE LEVEL .sp .LP This interface is obsolete. \fBddi_copyin\fR(9F) should be used instead. .SH PARAMETERS .sp .ne 2 .mk .na \fB\fIuserbuf\fR\fR .ad .RS 13n .rt User program source address from which data is transferred. .RE .sp .ne 2 .mk .na \fB\fIdriverbuf\fR\fR .ad .RS 13n .rt Driver destination address to which data is transferred. .RE .sp .ne 2 .mk .na \fB\fIcn\fR\fR .ad .RS 13n .rt Number of bytes transferred. .RE .SH DESCRIPTION .sp .LP \fBcopyin()\fR copies data from a user program source address to a driver buffer. The driver developer must ensure that adequate space is allocated for the destination address. .sp .LP Addresses that are word-aligned are moved most efficiently. However, the driver developer is not obligated to ensure alignment. This function automatically finds the most efficient move according to address alignment. .SH RETURN VALUES .sp .LP Under normal conditions, a \fB0\fR is returned indicating a successful copy. Otherwise, a \(mi\fB1\fR is returned if one of the following occurs: .RS +4 .TP .ie t \(bu .el o Paging fault; the driver tried to access a page of memory for which it did not have read or write access. .RE .RS +4 .TP .ie t \(bu .el o Invalid user address, such as a user area or stack area. .RE .RS +4 .TP .ie t \(bu .el o Invalid address that would have resulted in data being copied into the user block. .RE .RS +4 .TP .ie t \(bu .el o Hardware fault; a hardware error prevented access to the specified user memory. For example, an uncorrectable parity or \fBECC\fR error occurred. .RE .RS +4 .TP .ie t \(bu .el o ADI version mismatch; the hardware detected a mismatch between the version specified for the source address and the actual in-memory version. For more information, see the \fBadi\fR(3C) man page. .RE .sp .LP If a \(mi\fB1\fR is returned to the caller, driver entry point routines should return \fBEFAULT\fR. .SH CONTEXT .sp .LP \fBcopyin()\fR can be called from user context only. .SH EXAMPLES .LP \fBExample 1\fR An \fBioctl()\fR Routine .sp .LP A driver \fBioctl\fR(9E) routine (line 10) can be used to get or set device attributes or registers. In the \fBXX_GETREGS\fR condition (line 17), the driver copies the current device register values to a user data area (line 18). If the specified argument contains an invalid address, an error code is returned. .sp .in +2 .nf 1 struct device { /* layout of physical device registers */ 2 int control; /* physical device control word */ 3 int status; /* physical device status word */ 4 short recv_char; /* receive character from device */ 5 short xmit_char; /* transmit character to device */ 6 }; 7 8 extern struct device xx_addr[]; /* phys. device regs. location */ 9 . . . 10 xx_ioctl(dev_t dev, int cmd, int arg, int mode, 11 cred_t *cred_p, int *rval_p) 12 ... 13 { 14 register struct device *rp = &xx_addr[getminor(dev) >> 4]; 15 switch (cmd) { 16 17 case XX_GETREGS: /* copy device regs. to user program */ 18 if (copyin(arg, rp, sizeof(struct device))) 19 return(EFAULT); 20 break; 21 ... 22 } 23 ... 24 } .fi .in -2 .sp .SH ATTRIBUTES .sp .LP See \fBattributes\fR(7) for a description of the following attributes: .sp .TS tab( ) box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPE ATTRIBUTE VALUE _ Stability Level Obsolete .TE .sp .SH SEE ALSO .sp .LP \fBuiomove\fR(9F), \fBattributes\fR(7), \fBioctl\fR(9E), \fBddi_copyin\fR(9F), \fBbcopy\fR(9F), \fBcopyout\fR(9F), \fBddi_copyout\fR(9F). .sp .LP \fIWriting Device Drivers in Oracle Solaris 11.4\fR .SH NOTES .sp .LP Driver writers who intend to support layered ioctls in their \fBioctl\fR(9E) routines should use \fBddi_copyin\fR(9F) instead. .sp .LP Driver defined locks should not be held across calls to this function. .sp .LP \fBcopyin()\fR should not be used from a streams driver. For more information, see \fBM_COPYIN\fR and \fBM_COPYOUT\fR in \fISTREAMS Programming Guide\fR.