/*
* Copyright (c) 1998
* Matthias Drochner. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
static int
usl_sync_init(struct wsscreen *scr, struct usl_syncdata **sdp,
struct proc *p, int acqsig, int relsig, int frsig)
{
struct usl_syncdata *sd;
int res;
if (wsscreen_lookup_sync(scr, &usl_syncops, &sd))
return 0;
return sd;
}
static int
usl_detachproc(void *cookie, int waitok,
void (*callback)(void *, int, int), void *cbarg)
{
struct usl_syncdata *sd = cookie;
/* we really need a callback */
if (!callback)
return EINVAL;
/*
* Normally, this is called from the controlling process.
* Is is supposed to reply with a VT_RELDISP ioctl(), so
* it is not useful to tsleep() here.
*/
sd->s_callback = callback;
sd->s_cbarg = cbarg;
if (waitok) {
if (!usl_sync_check_sig(sd, sd->s_relsig, SF_DETACHPENDING))
return 0;
}
static int
usl_detachack(struct usl_syncdata *sd, int ack)
{
if (!(sd->s_flags & SF_DETACHPENDING)) {
printf("%s: not detaching\n", __func__);
return EINVAL;
}
static int
usl_attachack(struct usl_syncdata *sd, int ack)
{
if (!(sd->s_flags & SF_ATTACHPENDING)) {
printf("%s: not attaching\n", __func__);
return EINVAL;
}
int
wsdisplay_usl_ioctl1(device_t dv, u_long cmd, void *data,
int flag, struct lwp *l)
{
struct wsdisplay_softc *sc = device_private(dv);
int idx, maxidx;
switch (cmd) {
case VT_OPENQRY:
maxidx = wsdisplay_maxscreenidx(sc);
for (idx = 0; idx <= maxidx; idx++) {
if (wsdisplay_screenstate(sc, idx) == 0) {
*(int *)data = idx + 1;
return 0;
}
}
return ENXIO;
case VT_GETACTIVE:
idx = wsdisplay_getactivescreen(sc);
*(int *)data = idx + 1;
return 0;
case VT_ACTIVATE:
/*
* a gross and disgusting hack to make this abused up ioctl,
* which is a gross and disgusting hack on its own, work on
* LP64/BE - we want the lower 32bit so we simply dereference
* the argument pointer as long. May cause problems with 32bit
* kernels on sparc64?
*/
idx = *(long *)data - 1;
if (idx < 0)
return EINVAL;
return wsdisplay_switch(dv, idx, 1);
case VT_WAITACTIVE:
idx = *(long *)data - 1;
if (idx < 0)
return EINVAL;
return wsscreen_switchwait(sc, idx);
case VT_GETSTATE:
#define ss ((struct vt_stat *)data)
idx = wsdisplay_getactivescreen(sc);
ss->v_active = idx + 1;
ss->v_state = 0;
maxidx = wsdisplay_maxscreenidx(sc);
for (idx = 0; idx <= maxidx; idx++)
if (wsdisplay_screenstate(sc, idx) == EBUSY)
ss->v_state |= (1 << (idx + 1));
#undef ss
return 0;
#ifdef WSDISPLAY_COMPAT_PCVT
case VGAPCVTID:
#define id ((struct pcvtid *)data)
strlcpy(id->name, "pcvt", sizeof(id->name));
id->rmajor = 3;
id->rminor = 32;
#undef id
return 0;
#endif
#ifdef WSDISPLAY_COMPAT_SYSCONS
case CONS_GETVERS:
*(int *)data = 0x200; /* version 2.0 */
return 0;
#endif
switch (cmd) {
case VT_SETMODE:
#define newmode ((struct vt_mode *)data)
if (newmode->mode == VT_PROCESS) {
res = usl_sync_init(scr, &sd, p, newmode->acqsig,
newmode->relsig, newmode->frsig);
if (res)
return res;
} else {
sd = usl_sync_get(scr);
if (sd)
usl_sync_done(sd);
}
#undef newmode
return 0;
case VT_GETMODE:
#define cmode ((struct vt_mode *)data)
sd = usl_sync_get(scr);
if (sd) {
cmode->mode = VT_PROCESS;
cmode->relsig = sd->s_relsig;
cmode->acqsig = sd->s_acqsig;
cmode->frsig = sd->s_frsig;
} else
cmode->mode = VT_AUTO;
#undef cmode
return 0;
case VT_RELDISP:
#define d (*(long *)data)
sd = usl_sync_get(scr);
if (!sd)
return EINVAL;
switch (d) {
case VT_FALSE:
case VT_TRUE:
return usl_detachack(sd, (d == VT_TRUE));
case VT_ACKACQ:
return usl_attachack(sd, 1);
default:
return EINVAL;
}
#undef d
case KDENABIO:
#if defined(__i386__) && (defined(COMPAT_11) || defined(COMPAT_FREEBSD))
if (kauth_authorize_machdep(l->l_cred, KAUTH_MACHDEP_IOPL,
NULL, NULL, NULL, NULL) != 0)
return EPERM;
#endif
/* FALLTHRU */
case KDDISABIO:
#if defined(__i386__) && (defined(COMPAT_11) || defined(COMPAT_FREEBSD))
{
/* XXX NJWLWP */
struct trapframe *fp = (struct trapframe *)curlwp->l_md.md_regs;
if (cmd == KDENABIO)
fp->tf_eflags |= PSL_IOPL;
else
fp->tf_eflags &= ~PSL_IOPL;
}
#endif
return 0;
case KDSETRAD:
/* XXX ignore for now */
return 0;
default:
return EPASSTHROUGH;
/*
* the following are converted to wsdisplay ioctls
*/
case KDSETMODE:
req = WSDISPLAYIO_SMODE;
#define d (*(long *)data)
switch (d) {
case KD_GRAPHICS:
intarg = WSDISPLAYIO_MODE_MAPPED;
break;
case KD_TEXT:
intarg = WSDISPLAYIO_MODE_EMUL;
break;
default:
return EINVAL;
}
#undef d
arg = &intarg;
break;
case KDMKTONE:
req = WSKBDIO_COMPLEXBELL;
#define d (*(long *)data)
if (d) {
#define PCVT_SYSBEEPF 1193182
if (d >> 16) {
bd.which = WSKBD_BELL_DOPERIOD;
bd.period = d >> 16; /* ms */
}
else
bd.which = 0;
if (d & 0xffff) {
bd.which |= WSKBD_BELL_DOPITCH;
bd.pitch = PCVT_SYSBEEPF/(d & 0xffff); /* Hz */
}
} else
bd.which = 0; /* default */
#undef d
arg = &bd;
break;
case KDSETLED:
req = WSKBDIO_SETLEDS;
intarg = 0;
#define d (*(long *)data)
if (d & LED_CAP)
intarg |= WSKBD_LED_CAPS;
if (d & LED_NUM)
intarg |= WSKBD_LED_NUM;
if (d & LED_SCR)
intarg |= WSKBD_LED_SCROLL;
#undef d
arg = &intarg;
break;
case KDGETLED:
req = WSKBDIO_GETLEDS;
arg = &intarg;
break;
#ifdef WSDISPLAY_COMPAT_RAWKBD
case KDSKBMODE:
req = WSKBDIO_SETMODE;
switch (*(long *)data) {
case K_RAW:
intarg = WSKBD_RAW;
break;
case K_XLATE:
intarg = WSKBD_TRANSLATED;
break;
default:
return EINVAL;
}
arg = &intarg;
break;
case KDGKBMODE:
req = WSKBDIO_GETMODE;
arg = &intarg;
break;
#endif
}
res = wsdisplay_internal_ioctl(sc, scr, req, arg, flag, l);
if (res != EPASSTHROUGH)
return res;
switch (cmd) {
case KDGETLED:
#define d (*(int *)data)
d = 0;
if (intarg & WSKBD_LED_CAPS)
d |= LED_CAP;
if (intarg & WSKBD_LED_NUM)
d |= LED_NUM;
if (intarg & WSKBD_LED_SCROLL)
d |= LED_SCR;
#undef d
break;
#ifdef WSDISPLAY_COMPAT_RAWKBD
case KDGKBMODE:
*(int *)data = (intarg == WSKBD_RAW ? K_RAW : K_XLATE);
break;
#endif
}