2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 #ifndef __CM_CONN_H_ENV__
11 #define __CM_CONN_H_ENV__ 1
13 #define CM_CONN_DEFAULTRDRTIMEOUT 45
14 #define CM_CONN_CONNDEADTIME 60
15 #define CM_CONN_HARDDEADTIME 120
17 extern unsigned short ConnDeadtimeout;
18 extern unsigned short HardDeadtimeout;
20 typedef struct cm_conn {
21 struct cm_conn *nextp; /* locked by cm_connLock */
22 struct cm_server *serverp; /* locked by cm_serverLock */
23 struct rx_connection *callp; /* locked by mx */
24 struct cm_user *userp; /* locked by mx; a held reference */
25 osi_mutex_t mx; /* mutex for some of these fields */
26 unsigned long refCount; /* locked by cm_connLock */
27 int ucgen; /* ucellp's generation number */
28 long flags; /* locked by mx */
29 int cryptlevel; /* encrytion status */
32 #define CM_CONN_FLAG_FORCE_NEW 1
34 /* structure used for tracking RPC progress */
35 typedef struct cm_req {
36 DWORD startTime; /* Quit before RDR times us out */
37 int rpcError; /* RPC error code */
38 int volumeError; /* volume error code */
39 int accessError; /* access error code */
43 /* flags in cm_req structure */
44 #define CM_REQ_NORETRY 0x1
49 * Note: all of the errors listed here are currently generated by the volume
50 * package. Other vice error codes, should they be needed, could be included
54 #define VREADONLY EROFS /* Attempt to write a read-only volume */
56 /* Special error codes, which may require special handling (other than just
57 passing them through directly to the end user) are listed below */
59 #define VICE_SPECIAL_ERRORS 101 /* Lowest special error code */
61 #define VSALVAGE 101 /* Volume needs salvage */
62 #define VNOVNODE 102 /* Bad vnode number quoted */
63 #define VNOVOL 103 /* Volume not attached, doesn't exist,
64 not created or not online */
65 #define VVOLEXISTS 104 /* Volume already exists */
66 #define VNOSERVICE 105 /* Volume is not in service (i.e. it's
67 is out of funds, is obsolete, or somesuch) */
68 #define VOFFLINE 106 /* Volume is off line, for the reason
69 given in the offline message */
70 #define VONLINE 107 /* Volume is already on line */
71 #define VDISKFULL 108 /* ENOSPC - Partition is "full",
72 i.e. roughly within n% of full */
73 #define VOVERQUOTA 109 /* EDQUOT - Volume max quota exceeded */
74 #define VBUSY 110 /* Volume temporarily unavailable; try again.
75 The volume should be available again shortly;
76 if it isn't something is wrong.
77 Not normally to be propagated to the
79 #define VMOVED 111 /* Volume has moved to another server;
80 do a VGetVolumeInfo to THIS server to find
82 #define VIO 112 /* Vnode temporarily unaccessible, but not known
83 * to be permanently bad. */
84 #define VRESTRICTED 120 /* Volume is restricted from using one or more
85 * of the given residencies; do a
86 * vos examine to find out the current
89 #define VRESTARTING -100 /* server is restarting, otherwise similar to
90 VBUSY above. This is negative so that old
91 cache managers treat it as "server is down"*/
93 #include "cm_server.h"
96 extern void cm_InitConn(void);
98 extern void cm_InitReq(cm_req_t *reqp);
100 extern int cm_Analyze(cm_conn_t *connp, struct cm_user *up, struct cm_req *reqp,
102 struct AFSVolSync *volInfop,
103 cm_serverRef_t * serversp,
104 struct cm_callbackRequest *cbrp, long code);
106 extern long cm_ConnByMServers(struct cm_serverRef *, struct cm_user *,
107 cm_req_t *, cm_conn_t **);
109 extern long cm_ConnByServer(struct cm_server *, struct cm_user *, cm_conn_t **);
111 extern long cm_Conn(struct cm_fid *, struct cm_user *, struct cm_req *,
114 extern void cm_PutConn(cm_conn_t *connp);
116 extern void cm_GCConnections(cm_server_t *serverp);
118 extern struct rx_connection * cm_GetRxConn(cm_conn_t *connp);
120 extern void cm_ForceNewConnections(cm_server_t *serverp);
122 #endif /* __CM_CONN_H_ENV__ */