freebsd-dev/crypto/openssh/session.h

85 lines
2.5 KiB
C
Raw Normal View History

2014-01-30 10:56:49 +00:00
/* $OpenBSD: session.h,v 1.31 2013/10/14 21:20:52 djm Exp $ */
/*
2002-03-18 09:55:03 +00:00
* Copyright (c) 2000, 2001 Markus Friedl. 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.
*/
2000-05-15 04:37:24 +00:00
#ifndef SESSION_H
#define SESSION_H
2002-06-23 14:01:54 +00:00
#define TTYSZ 64
typedef struct Session Session;
struct Session {
int used;
int self;
2008-07-23 09:33:08 +00:00
int next_unused;
2002-06-23 14:01:54 +00:00
struct passwd *pw;
Authctxt *authctxt;
pid_t pid;
2006-09-30 13:29:51 +00:00
2002-06-23 14:01:54 +00:00
/* tty */
char *term;
int ptyfd, ttyfd, ptymaster;
2002-06-29 11:34:13 +00:00
u_int row, col, xpixel, ypixel;
2002-06-23 14:01:54 +00:00
char tty[TTYSZ];
2006-09-30 13:29:51 +00:00
2002-06-23 14:01:54 +00:00
/* X11 */
2002-06-29 11:34:13 +00:00
u_int display_number;
2002-06-23 14:01:54 +00:00
char *display;
2002-06-29 11:34:13 +00:00
u_int screen;
2002-06-23 14:01:54 +00:00
char *auth_display;
char *auth_proto;
char *auth_data;
int single_connection;
2006-09-30 13:29:51 +00:00
2002-06-23 14:01:54 +00:00
/* proto 2 */
int chanid;
2005-09-03 06:59:33 +00:00
int *x11_chanids;
2002-06-23 14:01:54 +00:00
int is_subsystem;
2014-01-30 10:56:49 +00:00
char *subsys;
2005-09-03 06:59:33 +00:00
u_int num_env;
2004-10-28 16:03:53 +00:00
struct {
char *name;
char *val;
2006-09-30 13:29:51 +00:00
} *env;
2002-06-23 14:01:54 +00:00
};
2002-03-18 09:55:03 +00:00
void do_authenticated(Authctxt *);
2004-02-26 10:38:49 +00:00
void do_cleanup(Authctxt *);
2000-05-15 04:37:24 +00:00
int session_open(Authctxt *, int);
2008-07-23 09:33:08 +00:00
void session_unused(int);
2002-03-18 09:55:03 +00:00
int session_input_channel_req(Channel *, const char *);
void session_close_by_pid(pid_t, int);
void session_close_by_channel(int, void *);
2002-06-23 14:01:54 +00:00
void session_destroy_all(void (*)(Session *));
2004-02-26 10:38:49 +00:00
void session_pty_cleanup2(Session *);
2000-05-15 04:37:24 +00:00
2002-06-23 14:01:54 +00:00
Session *session_new(void);
Session *session_by_tty(char *);
void session_close(Session *);
void do_setusercontext(struct passwd *);
2004-01-07 11:10:17 +00:00
void child_set_env(char ***envp, u_int *envsizep, const char *name,
const char *value);
2000-05-15 04:37:24 +00:00
#endif